当前位置: 首页>>代码示例>>C#>>正文


C# SendOptions.RouteReplyToThisInstance方法代码示例

本文整理汇总了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]);
        }
开发者ID:Particular,项目名称:NServiceBus,代码行数:12,代码来源:ApplyReplyToAddressBehaviorTests.cs

示例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();
            }
        }
开发者ID:Particular,项目名称:NServiceBus,代码行数:19,代码来源:ApplyReplyToAddressBehaviorTests.cs

示例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();
            }
        }
开发者ID:Particular,项目名称:NServiceBus,代码行数:20,代码来源:ApplyReplyToAddressBehaviorTests.cs

示例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());
        }
开发者ID:Particular,项目名称:NServiceBus,代码行数:8,代码来源:RoutingOptionExtensionsTests.cs


注:本文中的SendOptions.RouteReplyToThisInstance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。