Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the ServiceBusMessage class.
 /// </summary>
 public ServiceBusMessage(ServiceBusAuthentication authentication = default(ServiceBusAuthentication), ServiceBusBrokeredMessageProperties brokeredMessageProperties = default(ServiceBusBrokeredMessageProperties), IDictionary <string, string> customMessageProperties = default(IDictionary <string, string>), string message = default(string), string namespaceProperty = default(string), ServiceBusTransportType?transportType = default(ServiceBusTransportType?))
 {
     Authentication            = authentication;
     BrokeredMessageProperties = brokeredMessageProperties;
     CustomMessageProperties   = customMessageProperties;
     Message           = message;
     NamespaceProperty = namespaceProperty;
     TransportType     = transportType;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the ServiceBusTopicMessage class.
 /// </summary>
 public ServiceBusTopicMessage(ServiceBusAuthentication authentication = default(ServiceBusAuthentication), ServiceBusBrokeredMessageProperties brokeredMessageProperties = default(ServiceBusBrokeredMessageProperties), IDictionary <string, string> customMessageProperties = default(IDictionary <string, string>), string message = default(string), string namespaceProperty = default(string), ServiceBusTransportType?transportType = default(ServiceBusTransportType?), string topicPath = default(string))
     : base(authentication, brokeredMessageProperties, customMessageProperties, message, namespaceProperty, transportType)
 {
     TopicPath = topicPath;
 }