Esempio n. 1
0
 /// <summary>
 /// Ends an asynchronous operation to set the properties of the queue service.
 /// </summary>
 /// <param name="asyncResult">The result returned from a prior call to <see cref="BeginSetServiceProperties"/>.</param>
 public void EndSetServiceProperties(IAsyncResult asyncResult)
 {
     TaskImplHelper.EndImplWithRetry(asyncResult);
 }
Esempio n. 2
0
 public ResultSegment <CloudQueue> EndListQueuesSegmented(IAsyncResult asyncResult)
 {
     return(TaskImplHelper.EndImplWithRetry <ResultSegment <CloudQueue> >(asyncResult));
 }
Esempio n. 3
0
 /// <summary>
 /// Ends an asynchronous operation to get the properties of the queue service.
 /// </summary>
 /// <param name="asyncResult">The result returned from a prior call to <see cref="BeginGetServiceProperties"/>.</param>
 /// <returns>The queue service properties.</returns>
 public ServiceProperties EndGetServiceProperties(IAsyncResult asyncResult)
 {
     return(TaskImplHelper.EndImplWithRetry <ServiceProperties>(asyncResult));
 }
Esempio n. 4
0
 /// <summary>
 /// Ends an asynchronous operation to retrieve the next result segment.
 /// </summary>
 /// <param name="asyncResult">An <see cref="IAsyncResult"/> that references the pending asynchronous operation.</param>
 /// <returns>The next result segment.</returns>
 public ResultSegment <TElement> EndGetNext(IAsyncResult asyncResult)
 {
     return(TaskImplHelper.EndImplWithRetry <ResultSegment <TElement> >(asyncResult));
 }
Esempio n. 5
0
 public DataServiceResponse EndSaveChangesWithRetries(IAsyncResult asyncResult)
 {
     return(TaskImplHelper.EndImplWithRetry <DataServiceResponse>(asyncResult));
 }
 public void EndCreateTable(IAsyncResult asyncResult)
 {
     TaskImplHelper.EndImplWithRetry(asyncResult);
 }
 public ResultSegment <string> EndListTablesSegmented(IAsyncResult asyncResult)
 {
     return(TaskImplHelper.EndImplWithRetry <ResultSegment <string> >(asyncResult));
 }
Esempio n. 8
0
 public void EndClearPages(IAsyncResult asyncResult)
 {
     TaskImplHelper.EndImplWithRetry(asyncResult);
 }
 public void EndPutBlockList(IAsyncResult asyncResult)
 {
     TaskImplHelper.EndImplWithRetry(asyncResult);
 }
 public IEnumerable <ListBlockItem> EndDownloadBlockList(IAsyncResult asyncResult)
 {
     return(TaskImplHelper.EndImplWithRetry <IEnumerable <ListBlockItem> >(asyncResult));
 }
Esempio n. 11
0
 /// <summary>
 /// Ends an asynchronous operation to execute a query and return the results as a result segment.
 /// </summary>
 /// <param name="asyncResult">The reference to the pending asynchronous request to finish.</param>
 /// <returns>A result segment containing objects of type <typeparamref name="TElement"/>.</returns>
 public ResultSegment <TElement> EndExecuteSegmented(IAsyncResult asyncResult)
 {
     return(TaskImplHelper.EndImplWithRetry <ResultSegment <TElement> >(asyncResult));
 }
 public ResultSegment <IListBlobItem> EndListBlobsSegmented(IAsyncResult asyncResult)
 {
     return(TaskImplHelper.EndImplWithRetry <ResultSegment <IListBlobItem> >(asyncResult));
 }