MsmqBindingElementBase.MaxReceivedMessageSize Property

Definition

Gets or sets a value that indicates the maximum size, in bytes, allowed for a message.

public:
 property long MaxReceivedMessageSize { long get(); void set(long value); };
[System.Configuration.ConfigurationProperty("maxReceivedMessageSize", DefaultValue=65536)]
[System.Configuration.LongValidator(MinValue=0)]
public long MaxReceivedMessageSize { get; set; }
[<System.Configuration.ConfigurationProperty("maxReceivedMessageSize", DefaultValue=65536)>]
[<System.Configuration.LongValidator(MinValue=0)>]
member this.MaxReceivedMessageSize : int64 with get, set
Public Property MaxReceivedMessageSize As Long

Property Value

The maximum allowed size for a message that is sent or received with this binding.

Attributes

Remarks

If an incoming message is larger than MaxReceivedMessageSize, the message is dropped.

Applies to