本文整理汇总了C#中SendOptions.RouteReplyToThisInstance方法的典型用法代码示例。如果您正苦于以下问题:C# SendOptions.RouteReplyToThisInstance方法的具体用法?C# SendOptions.RouteReplyToThisInstance怎么用?C# SendOptions.RouteReplyToThisInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SendOptions
的用法示例。
在下文中一共展示了SendOptions.RouteReplyToThisInstance方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Should_set_the_reply_to_header_to_this_instance_when_requested
public async Task Should_set_the_reply_to_header_to_this_instance_when_requested()
{
var behavior = new ApplyReplyToAddressBehavior("MyEndpoint", "MyInstance", null, null);
var options = new SendOptions();
options.RouteReplyToThisInstance();
var context = CreateContext(options);
await behavior.Invoke(context, ctx => TaskEx.CompletedTask);
Assert.AreEqual("MyInstance", context.Headers[Headers.ReplyToAddress]);
}
示例2: Should_throw_when_trying_to_route_replies_to_this_instance_when_no_instance_id_is_used
public async Task Should_throw_when_trying_to_route_replies_to_this_instance_when_no_instance_id_is_used()
{
var behavior = new ApplyReplyToAddressBehavior("MyEndpoint", null, null, null);
var options = new SendOptions();
options.RouteReplyToThisInstance();
var context = CreateContext(options);
try
{
await behavior.Invoke(context, ctx => TaskEx.CompletedTask);
Assert.Fail("Expected exception");
}
catch (Exception)
{
Assert.Pass();
}
}
示例3: Should_throw_when_conflicting_settings_are_specified
public async Task Should_throw_when_conflicting_settings_are_specified()
{
var behavior = new ApplyReplyToAddressBehavior("MyEndpoint", "MyInstance", null, null);
try
{
var options = new SendOptions();
var context = CreateContext(options);
options.RouteReplyToAnyInstance();
options.RouteReplyToThisInstance();
await behavior.Invoke(context, ctx => TaskEx.CompletedTask);
Assert.Fail("Expected exception");
}
catch (Exception)
{
Assert.Pass();
}
}
示例4: SendOptions_IsRoutingReplyToThisInstance_Should_Return_True_When_Routing_Reply_To_This_Instance
public void SendOptions_IsRoutingReplyToThisInstance_Should_Return_True_When_Routing_Reply_To_This_Instance()
{
var options = new SendOptions();
options.RouteReplyToThisInstance();
Assert.IsTrue(options.IsRoutingReplyToThisInstance());
}