本文整理匯總了C#中System.Stream.ToExpectedObject方法的典型用法代碼示例。如果您正苦於以下問題:C# Stream.ToExpectedObject方法的具體用法?C# Stream.ToExpectedObject怎麽用?C# Stream.ToExpectedObject使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Stream
的用法示例。
在下文中一共展示了Stream.ToExpectedObject方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: When_provisioning_along_with_custom_properties
public async void When_provisioning_along_with_custom_properties()
{
var properties = new Dictionary<string, EntityProperty>
{
{"Created", new EntityProperty(DateTimeOffset.Now)},
{"Active", new EntityProperty(true)}
};
var stream = await Stream.ProvisionAsync(partition, StreamProperties.From(properties));
var entity = partition.RetrieveStreamEntity();
var expectedStream = new Stream
(
partition,
entity.ETag, 0,
StreamProperties.From(properties)
);
stream.ShouldEqual(expectedStream.ToExpectedObject());
var expectedEntity = new
{
RowKey = Api.StreamRowKey,
Properties = StreamProperties.From(properties),
Version = 0
};
entity.ShouldMatch(expectedEntity.ToExpectedObject());
}
示例2: When_partition_is_virgin
public async void When_partition_is_virgin()
{
var stream = await Stream.ProvisionAsync(partition);
var entity = partition.RetrieveStreamEntity();
var expectedStream = new Stream(partition, entity.ETag, 0, StreamProperties.None);
stream.ShouldEqual(expectedStream.ToExpectedObject());
var expectedEntity = new
{
RowKey = Api.StreamRowKey,
Version = 0
};
entity.ShouldMatch(expectedEntity.ToExpectedObject());
}