當前位置: 首頁>>代碼示例>>C#>>正文


C# TransportMessage.ProcessingEndpointName方法代碼示例

本文整理匯總了C#中NServiceBus.TransportMessage.ProcessingEndpointName方法的典型用法代碼示例。如果您正苦於以下問題:C# TransportMessage.ProcessingEndpointName方法的具體用法?C# TransportMessage.ProcessingEndpointName怎麽用?C# TransportMessage.ProcessingEndpointName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在NServiceBus.TransportMessage的用法示例。


在下文中一共展示了TransportMessage.ProcessingEndpointName方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: With_ReplyToAddress_should_return_ReplyToAddress

 public void With_ReplyToAddress_should_return_ReplyToAddress()
 {
     var message = new TransportMessage
                   {
                       ReplyToAddress = new Address("TheEndpoint", "")
                   };
     Assert.AreEqual("TheEndpoint",message.ProcessingEndpointName());
 }
開發者ID:AlexRhees,項目名稱:ServiceControl,代碼行數:8,代碼來源:TransportMessageExtensionsTests.cs

示例2: With_ProcessingEndpoint_header_should_return_processing_endpoint

 public void With_ProcessingEndpoint_header_should_return_processing_endpoint()
 {
     var message = new TransportMessage(Guid.Empty.ToString(), new Dictionary<string, string>
                                                               {
                                                                   { Headers.ProcessingEndpoint ,"TheEndpoint"}
                                                               });
     Assert.AreEqual("TheEndpoint",message.ProcessingEndpointName());
 }
開發者ID:AlexRhees,項目名稱:ServiceControl,代碼行數:8,代碼來源:TransportMessageExtensionsTests.cs

示例3: With_FailedQ_header_should_return_FailedQ

 public void With_FailedQ_header_should_return_FailedQ()
 {
     var message = new TransportMessage(Guid.Empty.ToString(), new Dictionary<string, string>
                                                               {
                                                                   { "NServiceBus.FailedQ" ,"TheEndpoint"}
                                                               });
     Assert.AreEqual("TheEndpoint",message.ProcessingEndpointName());
 }
開發者ID:AlexRhees,項目名稱:ServiceControl,代碼行數:8,代碼來源:TransportMessageExtensionsTests.cs

示例4: No_headers_with_message_type_should_throw_with_message_id_and_types

 public void No_headers_with_message_type_should_throw_with_message_id_and_types()
 {
     var message = new TransportMessage(Guid.Empty.ToString(), new Dictionary<string, string>
                                                               {
                                                                   { Headers.EnclosedMessageTypes ,"TheMessageType"}
                                                               });
     var exception = Assert.Throws<Exception>(() => { message.ProcessingEndpointName(); });
     Assert.AreEqual("No processing endpoint could be determined for message (00000000-0000-0000-0000-000000000000) with EnclosedMessageTypes (TheMessageType)", exception.Message);
 }
開發者ID:AlexRhees,項目名稱:ServiceControl,代碼行數:9,代碼來源:TransportMessageExtensionsTests.cs

示例5: No_headers_should_throw_with_message_id

 public void No_headers_should_throw_with_message_id()
 {
     var message = new TransportMessage(Guid.Empty.ToString(),new Dictionary<string, string>());
     var exception = Assert.Throws<Exception>(() => { message.ProcessingEndpointName(); });
     Assert.AreEqual("No processing endpoint could be determined for message (00000000-0000-0000-0000-000000000000)",exception.Message);
 }
開發者ID:AlexRhees,項目名稱:ServiceControl,代碼行數:6,代碼來源:TransportMessageExtensionsTests.cs


注:本文中的NServiceBus.TransportMessage.ProcessingEndpointName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。