System.ServiceModel
4.0.0.0
System.ServiceModel.Configuration.MsmqBindingElementBase
The binding provides support for queuing by leveraging Microsoft Message Queuing (MSMQ) as a transport and enables support for loosely coupled applications, failure isolation, load leveling and disconnected operations. For a discussion of these features, see Queues.
This is one of the standard bindings provided by indigo1. The recommended procedure is to define the binding using configuration values and not to use a code-based approach, except in certain advanced scenarios in which configuration values must be set when a service is initialized.
Represents a queued binding that is suitable for cross-machine communication.
Constructor
4.0.0.0
To be added.
Initializes a new instance of the class.
Property
4.0.0.0
System.Type
To be added.
To be added.
Gets the of this binding.
Property
4.0.0.0
System.Configuration.ConfigurationProperty("maxBufferPoolSize", DefaultValue=Mono.Cecil.CustomAttributeArgument, Options=System.Configuration.ConfigurationPropertyOptions.None)
System.Configuration.LongValidator(ExcludeRange=false, MaxValue=9223372036854775807, MinValue=0)
System.Int64
To be added.
The minimizes the cost of using buffers by using a buffer pool. Buffers are required to process messages by the service when they come out of the channel. If there is not sufficient memory in the buffer pool to process the message load, the must allocate additional memory from the CLR heap, which increases the garbage collection overhead. Extensive allocation from the CLR garbage heap is an indication that the buffer pool size is too small and that performance can be improved with a larger allocation by increasing the limit.
Gets or sets the maximum amount of memory that is allocated for use by the message buffer manager that receives messages from the channel.
Method
4.0.0.0
System.Void
To be added.
Applies the specified binding to the configuration element.
A to be applied to the configuration element.
Property
4.0.0.0
System.Configuration.ConfigurationPropertyCollection
To be added.
To be added.
Gets the that is associated with this binding.
Property
4.0.0.0
System.Configuration.ConfigurationProperty("queueTransferProtocol", DefaultValue=Mono.Cecil.CustomAttributeArgument, Options=System.Configuration.ConfigurationPropertyOptions.None)
System.ServiceModel.QueueTransferProtocol
To be added.
MSMQ does not support Active Directory addressing when using SOAP Reliable Messaging Protocol. Therefore, you should not set this property to or when is set to true.
Gets or sets an enumeration value that indicates the queued communication channel transport that this binding uses.
Property
4.0.0.0
System.Configuration.ConfigurationProperty("readerQuotas", Options=System.Configuration.ConfigurationPropertyOptions.None)
System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement
To be added.
The object defines a number of constraints on the complexity of SOAP messages that can be processed by endpoints configured with a binding. These constraints include maxArrayLength, maxBytesPerRead, maxDepth, maxNameTableCharCount, and maxStringContentLength. These values aid in the prevention of denial of service attacks. For more information, see .
Gets or sets the object that is associated with this binding.
Property
4.0.0.0
System.Configuration.ConfigurationProperty("security", Options=System.Configuration.ConfigurationPropertyOptions.None)
System.ServiceModel.Configuration.NetMsmqSecurityElement
To be added.
is an encapsulation of both MSMQ transport and SOAP security. It specifies whether transport or SOAP security is enabled and, if so, what authentication mode and protection levels are in use.
Gets the that is associated with this binding.
Property
4.0.0.0
System.Configuration.ConfigurationProperty("useActiveDirectory", DefaultValue=Mono.Cecil.CustomAttributeArgument, Options=System.Configuration.ConfigurationPropertyOptions.None)
System.Boolean
To be added.
MSMQ queue addresses can consist of path names or direct format names. With a direct format name, MSMQ resolves the queue name using DNS, NetBIOS, or IP. With a path name, MSMQ resolves the queue name using Active Directory.
By default, the indigo1 queued transport converts the URI of a message queue to a direct format name. By setting the property to true, an application can specify that the queued transport should resolve the queue name using Active Directory rather than DNS, NetBIOS, or IP.
Returns a Boolean value that indicates whether queue addresses should be converted using Active Directory.