QueueDescription.MaxQueueSizeInBytes Property

Gets or sets the maximum queue size in bytes.

Namespace:  Microsoft.ServiceBus.Messaging
Assembly:  Microsoft.ServiceBus.Messaging (in Microsoft.ServiceBus.Messaging.dll)

Syntax

'Declaration
<DataMemberAttribute(Name := "MaxQueueSizeInBytes", IsRequired := False,  _
    Order := , EmitDefaultValue := False)> _
Public Property MaxQueueSizeInBytes As Nullable(Of Long)
    Get
    Set
'Usage
Dim instance As QueueDescription
Dim value As Nullable(Of Long)

value = instance.MaxQueueSizeInBytes

instance.MaxQueueSizeInBytes = value
[DataMemberAttribute(Name = "MaxQueueSizeInBytes", IsRequired = false, 
    Order = , EmitDefaultValue = false)]
public Nullable<long> MaxQueueSizeInBytes { get; set; }
[DataMemberAttribute(Name = L"MaxQueueSizeInBytes", IsRequired = false, 
    Order = , EmitDefaultValue = false)]
public:
property Nullable<long long> MaxQueueSizeInBytes {
    Nullable<long long> get ();
    void set (Nullable<long long> value);
}
[<DataMemberAttribute(Name = "MaxQueueSizeInBytes", IsRequired = false, 
    Order = , EmitDefaultValue = false)>]
member MaxQueueSizeInBytes : Nullable<int64> with get, set
function get MaxQueueSizeInBytes () : Nullable<long>
function set MaxQueueSizeInBytes (value : Nullable<long>)

Property Value

Type: System.Nullable<Int64>
A nullable Long value.

See Also

Reference

QueueDescription Class

Microsoft.ServiceBus.Messaging Namespace