本文整理匯總了C#中System.Net.Http.ByteArrayContent.CopyToAsync方法的典型用法代碼示例。如果您正苦於以下問題:C# ByteArrayContent.CopyToAsync方法的具體用法?C# ByteArrayContent.CopyToAsync怎麽用?C# ByteArrayContent.CopyToAsync使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Net.Http.ByteArrayContent
的用法示例。
在下文中一共展示了ByteArrayContent.CopyToAsync方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CopyTo_Invalid
public void CopyTo_Invalid()
{
var m = new MemoryStream ();
var sc = new ByteArrayContent (new byte[0]);
try {
sc.CopyToAsync (null);
Assert.Fail ("#1");
} catch (ArgumentNullException) {
}
}
示例2: CopyToAsync
public void CopyToAsync()
{
byte[] b = { 4, 2 };
var sc = new ByteArrayContent (b);
var dest = new MemoryStream ();
var task = sc.CopyToAsync (dest);
Assert.IsTrue (task.Wait (500));
Assert.AreEqual (2, dest.Length, "#1");
}
示例3: CopyToAsync_UseEmptySourceArray_NothingCopied
public async Task CopyToAsync_UseEmptySourceArray_NothingCopied()
{
var contentData = new byte[0];
var content = new ByteArrayContent(contentData, 0, 0);
var destination = new MemoryStream();
await content.CopyToAsync(destination);
Assert.Equal(0, destination.Length);
}
示例4: CopyToAsync_UsePartialSourceArray_PartialContentCopied
public async Task CopyToAsync_UsePartialSourceArray_PartialContentCopied()
{
byte[] contentData = CreateSourceArray();
var content = new ByteArrayContent(contentData, 3, 5);
var destination = new MemoryStream();
await content.CopyToAsync(destination);
Assert.Equal(5, destination.Length);
CheckResult(destination, 3);
}
示例5: CopyToAsync_UseWholeSourceArray_WholeContentCopied
public async Task CopyToAsync_UseWholeSourceArray_WholeContentCopied()
{
byte[] contentData = CreateSourceArray();
var content = new ByteArrayContent(contentData);
var destination = new MemoryStream();
await content.CopyToAsync(destination);
Assert.Equal(contentData.Length, destination.Length);
CheckResult(destination, 0);
}
示例6: CopyToAsync_NullDestination_ThrowsArgumentNullException
public void CopyToAsync_NullDestination_ThrowsArgumentNullException()
{
byte[] contentData = CreateSourceArray();
var content = new ByteArrayContent(contentData);
Assert.Throws<ArgumentNullException>(() => { Task t = content.CopyToAsync(null); });
}