MulticastAddress Property (MessageQueueInstaller)
Introduced in MSMQ 3.0. Gets or sets the multicast address associated with the queue.
Syntax
'Declaration <DefaultValueAttribute()> Public Property MulticastAddress As String
'Usage Dim instance As MessageQueueInstaller Dim value As String instance.MulticastAddress = value value = instance.MulticastAddress
[DefaultValue()] public string MulticastAddress {get; set;}
[DefaultValue()] public: property String^ MulticastAddress { String^ get(); void set ( String^ value); }
Property Value
A System.String that contains a valid multicast address (in the form shown below) or null, which indicates that the queue is not associated with a multicast address. Copy Code<address>:<port>Exceptions
Exception | Description |
---|---|
System.PlatformNotSupportedException | MSMQ 3.0 is not installed. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also