예제 #1
0
 // bool
 public bool SetHTTPRequestCookieContainer(HTTPRequestHandle hRequest /*HTTPRequestHandle*/, HTTPCookieContainerHandle hCookieContainer /*HTTPCookieContainerHandle*/)
 {
     return(platform.ISteamHTTP_SetHTTPRequestCookieContainer(hRequest.Value, hCookieContainer.Value));
 }
예제 #2
0
 // bool
 public bool ReleaseCookieContainer(HTTPCookieContainerHandle hCookieContainer /*HTTPCookieContainerHandle*/)
 {
     return(platform.ISteamHTTP_ReleaseCookieContainer(hCookieContainer.Value));
 }
예제 #3
0
 // bool
 public bool SetCookie(HTTPCookieContainerHandle hCookieContainer /*HTTPCookieContainerHandle*/, string pchHost /*const char **/, string pchUrl /*const char **/, string pchCookie /*const char **/)
 {
     return(platform.ISteamHTTP_SetCookie(hCookieContainer.Value, pchHost, pchUrl, pchCookie));
 }
예제 #4
0
 // bool
 public bool SetCookie(HTTPCookieContainerHandle hCookieContainer /*HTTPCookieContainerHandle*/, string pchHost /*const char **/, string pchUrl /*const char **/, string pchCookie /*const char **/)
 {
     return(platform.ISteamHTTP_SetCookie(hCookieContainer.Value, Utility.GetUtf8Bytes(pchHost), Utility.GetUtf8Bytes(pchUrl), Utility.GetUtf8Bytes(pchCookie)));
 }