本文整理汇总了C#中SyncMemoryStream.ToArray方法的典型用法代码示例。如果您正苦于以下问题:C# SyncMemoryStream.ToArray方法的具体用法?C# SyncMemoryStream.ToArray怎么用?C# SyncMemoryStream.ToArray使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SyncMemoryStream
的用法示例。
在下文中一共展示了SyncMemoryStream.ToArray方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DownloadTextAsync
/// <summary>
/// Downloads the file's contents as a string.
/// </summary>
/// <param name="accessCondition">An <see cref="AccessCondition"/> object that represents the access conditions for the file.</param>
/// <param name="options">An object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
/// <param name="cancellationToken">A <see cref="CancellationToken"/> to observe while waiting for a task to complete.</param>
/// <returns>The contents of the file, as a string.</returns>
public Task<string> DownloadTextAsync(AccessCondition accessCondition, FileRequestOptions options, OperationContext operationContext, CancellationToken cancellationToken)
{
return Task.Run(async () =>
{
using (SyncMemoryStream stream = new SyncMemoryStream())
{
await this.DownloadToStreamAsync(stream, accessCondition, options, operationContext, cancellationToken);
byte[] streamAsBytes = stream.ToArray();
return Encoding.UTF8.GetString(streamAsBytes, 0, streamAsBytes.Length);
}
}, cancellationToken);
}