ESRI.ArcGIS.ADF.Web.UI.WebControls
CallbackResults Property
See Also 
ESRI.ArcGIS.ADF.Web.UI.WebControls Namespace > WebControl Class : CallbackResults Property




A collection of CallbackResult objects for passing information from the server to the client during a callback.

Syntax

Visual Basic (Declaration) 
<BrowsableAttribute(False)>
<DesignerSerializationVisibilityAttribute()>
Public Overridable Property CallbackResults As CallbackResultCollection
Visual Basic (Usage)Copy Code
Dim instance As WebControl
Dim value As CallbackResultCollection
 
instance.CallbackResults = value
 
value = instance.CallbackResults
C# 
[BrowsableAttribute(false)]
[DesignerSerializationVisibilityAttribute()]
public virtual CallbackResultCollection CallbackResults {get; set;}

Remarks

Each Web ADF control maintains a CallbackResults collection. The CallbackResults is used by the control during a client callback to pass information from the server back to the client. This is the key to updating the Web ADF control and other page elements with the client callback framework.

Developers can add to the callback results collection of the control that initiated the callback to pass more information back to the browser. Do this either by creating a new CallbackResults object, or by copying the callback results from another Web ADF control, using the CopyFrom method of the CallbackResultCollection class.

For more information on client callbacks, see the topic topic Working with AJAX capabilities of the Web ADF in the Developer Help. Also see the SDK Samples for examples of using the callback results collection.

See Also

© 2010 All Rights Reserved.