System.Web 2.0.0.0 System.Web.UI.WebControls.WebParts.ConnectionPoint In every Web Parts connection between two server controls, each control must have (among other requirements) an associated connection point object that enables it to connect to the other control and to either provide or consume data, depending on whether the control is designated as the provider or consumer for the connection. A object in general contains the details for how a control can connect to another control and the type of data it can share. For a control acting as the consumer in a connection, its connection point must be a object. For details on Web Parts connections and connection points, read the topics listed in the See Also section below. To create a object, several steps are required: Enable a consumer control to reference an interface instance. A or other server control (any type of server control that will be added to a zone can be used) must be able to consume data from a specific interface instance. The control need not implement the interface; only the provider must implement it. The consumer can either work with the exact interface type served by a provider or, if it does not, a object can be used to transform data from a provider's interface type to a type understood by the consumer. A typical way to enable a consumer is to declare a private field to contain a reference to the desired interface type. Identify a callback method. A method in the consumer must be identified as the callback method to establish a connection with the provider. This method retrieves an instance of the interface that the provider implements, and assigns it to (for example) the private field created in the first step. The Web Parts approach for identifying a callback method in the consumer is to add a ConnectionConsumer metadata attribute (defined by the class) to the method that receives the interface instance. When the attribute is added, the only required parameter is a display name to use for the consumer connection point. Optional parameters can also be added, such as an ID. Process and output the data from the interface instance. Perform any internal processing as needed on the data, and then typically a consumer control will render the data to the page. A common way of doing this is to override the control's method. During a synchronous request, a consumer should request data directly from the provider during or immediately after the event. During an asynchronous request, if the provider's callback method is not called at any point during rendering, the developer can assume that no data was sent to the consumer. After a control has been equipped to act as a consumer, the control can participate in connections (assuming that a provider control is also equipped and available). To create a static, declarative connection in the markup of a Web page, developers can use the <asp:webpartconnection> element. If the ConnectionConsumer attribute in the consumer source code that identifies the callback method specifies an ID for the connection point, then that value must be assigned to the ConsumerConnectionPointID attribute in the <asp:webpartconnection> element on a page. A reason that a developer might specify an ID for a consumer connection point is if there are multiple connection points defined in the consumer control. If an ID is not specified for the consumer connection point in the consumer control, a value does not have to be assigned to the ConsumerConnectionPointID attribute in the page either, because the connection will be created using a default value obtained from the field. To create a connection in code, developers must create a new object by calling the method and passing to it the ID of the consumer control, along with the ID or index of the defined object in the consumer control. The returned object, along with a reference to the consumer control, a reference to the provider control, and a corresponding object, are all passed to the method to create a new object. Although developers can use consumer connection points as part of establishing connections either declaratively or programmatically, users can also interact with consumer connection points to establish connections through the user interface (UI). If developers declare a control on a Web page, it provides a run-time UI for users to create connections. If users choose the provider control as the starting point for establishing the connection by clicking its connect verb (they could also choose the consumer; there is no difference in the resulting connection), in the UI they will see a drop-down list control with the display names of the available consumer connection point (or points if there are multiple ones) that the provider can send the data to. Users must select a consumer connection point to establish a connection. A object associates directly with a specific consumer control, and stores details about a connection in the properties it inherits from the base class. For example, in the inherited property, a consumer connection point keeps the type of interface it uses. If the provider and consumer in a connection both understand the interface type, the controls are compatible and capable of forming a direct connection. If the provider and consumer cannot work with the same interface type, they are incompatible and must use a object to translate the provider connection point's property into a type that the consumer can work with. Another important inherited property is the property, which provides a friendly name to display in the UI for users to choose a consumer connection point when creating connections. The display name is the required parameter when developers add a ConnectionConsumer attribute to the callback method in a consumer control. The inherited property is also useful, as indicated above, because it provides a unique identifier for a consumer connection point in the event that a consumer has multiple connection points. A consumer can have multiple objects defined in it, and in this case, when developers add the ConnectionConsumer attribute to a method, they should specify an ID value to distinguish each connection point. One other notable inherited property is the property, which indicates whether a consumer connection point can connect simultaneously to multiple providers. This property value is false by default for consumer connection points (whereas it defaults to true for provider connection points). The class adds several unique methods to the members it inherits from the class. The method invokes the consumer's own defined callback method to retrieve the interface instance from the provider. The method returns a Boolean value that indicates whether the connection point is able to establish connections, based on the current state of the associated consumer control. Defines a connection point object that enables a server control acting as a consumer to form a connection with a provider. Constructor To be added. To be added. To be added. To be added. To be added. The constructor for the class simply calls the base constructor, passing to it the various parameters and initializing the base class. The base class constructor checks a number of the parameters for a connection point and can throw several exceptions. For a list of possible exceptions, see the Exceptions section. You can call the constructor to create your own instance of the class. However, in cases where you are simply establishing a connection and not extending the class, you should call the method to return a connection point object from a provider. Initializes a new instance of the class. A unique identifier for the consumer connection point. 2.0.0.0 Method System.Void This method receives an interface instance from a provider that contains data for the consumer control. The method is called by objects when a connection is being activated. This is a critical step that is part of initiating a connection and enabling two controls to share data. The consumer control in a connection must be able to work with the same type of interface as the provider. If it does not, the controls are incompatible and a object must be used to establish a connection. Invokes the callback method in a consumer control and retrieves the interface instance from a provider control. The consumer control associated with a consumer connection point. The interface instance returned from a provider control. 2.0.0.0 Method System.Boolean To be added. To be added. To be added. To be added. To be added. 2.0.0.0