IDataServiceConfiguration.MaxExpandCount Property

Gets or sets the maximum number of segments that can be expanded by the $expand query option for all requests to the data service.

Namespace:  System.Data.Services
Assembly:  Microsoft.Data.Services (in Microsoft.Data.Services.dll)

Syntax

'Declaration
Property MaxExpandCount As Integer 
    Get 
    Set
'Usage
Dim instance As IDataServiceConfiguration 
Dim value As Integer 

value = instance.MaxExpandCount

instance.MaxExpandCount = value
int MaxExpandCount { get; set; }
property int MaxExpandCount {
    int get ();
    void set (int value);
}
abstract MaxExpandCount : int with get, set
function get MaxExpandCount () : int 
function set MaxExpandCount (value : int)

Property Value

Type: System.Int32
The maximum number of segments to expand.

Remarks

If the limit is exceeded, a 400 Bad Request status code is returned. The value specified must be between 0 and int.MaxValue; otherwise, an ArgumentOutOfRangeException is thrown.

The following query string sample has two segments:

See Also

Reference

IDataServiceConfiguration Interface

System.Data.Services Namespace