本文整理汇总了C#中MockContent.Dispose方法的典型用法代码示例。如果您正苦于以下问题:C# MockContent.Dispose方法的具体用法?C# MockContent.Dispose怎么用?C# MockContent.Dispose使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MockContent
的用法示例。
在下文中一共展示了MockContent.Dispose方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Dispose_DisposeContentThenAccessContentLength_Throw
public void Dispose_DisposeContentThenAccessContentLength_Throw()
{
var content = new MockContent();
// This is not really typical usage of the type, but let's make sure we consider also this case: The user
// keeps a reference to the Headers property before disposing the content. Then after disposing, the user
// accesses the ContentLength property.
var headers = content.Headers;
content.Dispose();
Assert.Throws<ObjectDisposedException>(() => headers.ContentLength.ToString());
}
示例2: Dispose_DisposedObjectThenAccessMembers_ThrowsObjectDisposedException
public async Task Dispose_DisposedObjectThenAccessMembers_ThrowsObjectDisposedException()
{
var content = new MockContent();
content.Dispose();
var m = new MemoryStream();
await Assert.ThrowsAsync<ObjectDisposedException>(() => content.CopyToAsync(m));
await Assert.ThrowsAsync<ObjectDisposedException>(() => content.ReadAsByteArrayAsync());
await Assert.ThrowsAsync<ObjectDisposedException>(() => content.ReadAsStringAsync());
await Assert.ThrowsAsync<ObjectDisposedException>(() => content.ReadAsStreamAsync());
await Assert.ThrowsAsync<ObjectDisposedException>(() => content.LoadIntoBufferAsync());
// Note that we don't throw when users access the Headers property. This is useful e.g. to be able to
// read the headers of a content, even though the content is already disposed. Note that the .NET guidelines
// only require members to throw ObjectDisposedExcpetion for members "that cannot be used after the object
// has been disposed of".
_output.WriteLine(content.Headers.ToString());
}
示例3: Dispose_GetReadStreamThenDispose_ReadStreamGetsDisposed
public async Task Dispose_GetReadStreamThenDispose_ReadStreamGetsDisposed()
{
var content = new MockContent();
MockMemoryStream s = (MockMemoryStream) await content.ReadAsStreamAsync();
Assert.Equal(1, content.CreateContentReadStreamCount);
Assert.Equal(0, s.DisposeCount);
content.Dispose();
Assert.Equal(1, s.DisposeCount);
}