DoPostData() 공개 메소드

public DoPostData ( string path, string postDataBody, CancellationToken cancellationToken, bool verifyResponse, object>.Action responseCallback = null ) : IEnumerator
path string
postDataBody string
cancellationToken CancellationToken
verifyResponse bool
responseCallback object>.Action
리턴 IEnumerator
예제 #1
0
 protected override IEnumerator DoExecuteCoroutine(TaskExecutionContext context, BackendConnection connection)
 {
     PSDebug.Log("Execute BackendUpdateTask");
     yield return connection.DoPostData(
     connection.UserAction("update"),
     _serializedGameState,
     context.CancellationToken,
     false
     );
 }