Method | Description | |
---|---|---|
GetMethodResponseData ( ClientUnifiedMessageHandle hHandle, byte pResponseBuffer, uint unResponseBufferSize, bool bAutoRelease ) : bool |
Gets a response in binary serialized form (and optionally release the corresponding allocated memory).
|
|
GetMethodResponseInfo ( ClientUnifiedMessageHandle hHandle, uint &punResponseSize, EResult &peResult ) : bool |
Gets the size of the response and the EResult. Returns false if the response is not ready yet.
|
|
ReleaseMethod ( ClientUnifiedMessageHandle hHandle ) : bool |
Releases the message and its corresponding allocated memory.
|
|
SendMethod ( string pchServiceMethod, byte pRequestBuffer, uint unRequestBufferSize, ulong unContext ) : ClientUnifiedMessageHandle |
Sends a service method (in binary serialized form) using the Steam Client. Returns a unified message handle (k_InvalidUnifiedMessageHandle if could not send the message).
|
|
SendNotification ( string pchServiceNotification, byte pNotificationBuffer, uint unNotificationBufferSize ) : bool |
Sends a service notification (in binary serialized form) using the Steam Client. Returns true if the notification was sent successfully.
|
public static GetMethodResponseData ( ClientUnifiedMessageHandle hHandle, byte pResponseBuffer, uint unResponseBufferSize, bool bAutoRelease ) : bool | ||
hHandle | ClientUnifiedMessageHandle | |
pResponseBuffer | byte | |
unResponseBufferSize | uint | |
bAutoRelease | bool | |
return | bool |
public static GetMethodResponseInfo ( ClientUnifiedMessageHandle hHandle, uint &punResponseSize, EResult &peResult ) : bool | ||
hHandle | ClientUnifiedMessageHandle | |
punResponseSize | uint | |
peResult | EResult | |
return | bool |
public static ReleaseMethod ( ClientUnifiedMessageHandle hHandle ) : bool | ||
hHandle | ClientUnifiedMessageHandle | |
return | bool |
public static SendMethod ( string pchServiceMethod, byte pRequestBuffer, uint unRequestBufferSize, ulong unContext ) : ClientUnifiedMessageHandle | ||
pchServiceMethod | string | |
pRequestBuffer | byte | |
unRequestBufferSize | uint | |
unContext | ulong | |
return | ClientUnifiedMessageHandle |
public static SendNotification ( string pchServiceNotification, byte pNotificationBuffer, uint unNotificationBufferSize ) : bool | ||
pchServiceNotification | string | |
pNotificationBuffer | byte | |
unNotificationBufferSize | uint | |
return | bool |