You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.5 KiB

// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Lobby
{
/// <summary>
/// Input parameters for the <see cref="LobbySearch.RemoveParameter" /> function.
/// </summary>
public class LobbySearchRemoveParameterOptions
{
/// <summary>
/// Search parameter key to remove from the search
/// </summary>
public string Key { get; set; }
/// <summary>
/// Search comparison operation associated with the key to remove
/// </summary>
public ComparisonOp ComparisonOp { get; set; }
}
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
internal struct LobbySearchRemoveParameterOptionsInternal : ISettable, System.IDisposable
{
private int m_ApiVersion;
private System.IntPtr m_Key;
private ComparisonOp m_ComparisonOp;
public string Key
{
set
{
Helper.TryMarshalSet(ref m_Key, value);
}
}
public ComparisonOp ComparisonOp
{
set
{
m_ComparisonOp = value;
}
}
public void Set(LobbySearchRemoveParameterOptions other)
{
if (other != null)
{
m_ApiVersion = LobbySearch.LobbysearchRemoveparameterApiLatest;
Key = other.Key;
ComparisonOp = other.ComparisonOp;
}
}
public void Set(object other)
{
Set(other as LobbySearchRemoveParameterOptions);
}
public void Dispose()
{
Helper.TryMarshalDispose(ref m_Key);
}
}
}