Exemplo n.º 1
0
 internal PARTY_INVITATION_CONFIGURATION(PartyCSharpSDK.PARTY_INVITATION_CONFIGURATION publicObject, DisposableCollection disposableCollection)
 {
     this.identifier   = new UTF8StringPtr(publicObject.Identifier, disposableCollection);
     this.revocability = publicObject.Revocability;
     unsafe
     {
         SizeT size;
         this.entityIds = (UTF8StringPtr *)Converters.ClassArrayToPtr <string, UTF8StringPtr>(
             publicObject.EntityIds,
             (x, d) => new UTF8StringPtr(x, d),
             disposableCollection,
             out size);
         this.entityIdCount = size.ToUInt32();
     }
 }
Exemplo n.º 2
0
 unsafe internal static extern UInt32 PartyChatControlGetPropertyKeys(
     PARTY_CHAT_CONTROL_HANDLE chatControl,
     out UInt32 propertyCount,
     out UTF8StringPtr *keys);
Exemplo n.º 3
0
 unsafe internal static extern UInt32 PartyNetworkGetPropertyKeys(
     PARTY_NETWORK_HANDLE network,
     out UInt32 propertyCount,
     out UTF8StringPtr *keys);
Exemplo n.º 4
0
 unsafe internal static extern UInt32 PartyEndpointGetPropertyKeys(
     PARTY_ENDPOINT_HANDLE endpoint,
     out UInt32 propertyCount,
     out UTF8StringPtr *keys);