コード例 #1
0
        public IEnumerator GetTextBlob(Action <RestResponse> callback, string resourcePath = "")
        {
            StorageRequest request = Auth.GetAuthorizedStorageRequest(client, resourcePath);

            yield return(request.Send());

            request.GetText(callback);
        }
コード例 #2
0
        public IEnumerator GetTextBlob(Action <RestResponse> callback, string resourcePath = "", Dictionary <string, string> queryParams = null, Dictionary <string, string> headers = null, int contentLength = 0)
        {
            StorageRequest request = Auth.GetAuthorizedStorageRequest(client, resourcePath, queryParams, headers, contentLength);

            yield return(request.Send());

            request.GetText(callback);
        }