ArcObjects Library Reference (Carto)  

IMapServerInit.MaxBufferCount Property

The maximum number of records buffered on the server for display.

[Visual Basic .NET]
Public Property MaxBufferCount As Integer
[C#]
public int MaxBufferCount {get; set;}
[C++]
HRESULT get_MaxBufferCount(
  long* Count
);
[C++]
HRESULT put_MaxBufferCount(
  long Count
);
[C++]

Parameters

Count [out, retval]   Count is a parameter of type long Count [in]   Count is a parameter of type long

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

In order to control the amount of information MapServer needs to process for a buffer, a maximum number of records to be buffered can be set. This value is contained in the MaxBufferCount property. The default value for this property is 100. If the number of features to be buffered exceeds MaxBufferCount no features will be buffered. The MaxBufferCount can also be changed by modifying the MaxRecordCount XML tag in the MapServer's configuration file.

See Also

IMapServerInit Interface