Click or drag to resize

ClusterPageBeginServeRequest Method (IClusterLayer, JSONObject, HttpRequest, HttpResponse, AsyncCallback, Object)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Starts asynchronously calculating the clusters for a cluster layer.

Namespace:  Telogis.GeoBase.Clustering
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public static IAsyncResult BeginServeRequest(
	IClusterLayer layer,
	JSONObject userObject,
	HttpRequest request,
	HttpResponse response,
	AsyncCallback callback,
	Object state
)

Parameters

layer
Type: Telogis.GeoBase.ClusteringIClusterLayer
The cluster layer.
userObject
Type: Telogis.GeoBase.SerializationJSONObject
User-specific information associated with the set of clusters in the layer, that will be set on the ClusterSet's UserObject property.
request
Type: System.WebHttpRequest
The HttpRequest from the client.
response
Type: System.WebHttpResponse
The HttpResponse that will be sent to the client.
callback
Type: SystemAsyncCallback
Callback that will be set on the returned IAsyncResult.
state
Type: SystemObject
State object that will be set on the returned IAsyncResult.

Return Value

Type: IAsyncResult
An IAsyncResult that will be passed to EndServeRequest.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown when layer, request or response are null.
See Also