This document is archived and information here might be outdated.  Recommended version.


IMapServerInit.MaxBufferCount Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IM > IMapServerInit Interface > IMapServerInit.MaxBufferCount Property
ArcGIS Developer Help

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(
  System.Int32* 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