WebPartManager.EndWebPartConnecting Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Completes the process of connecting a WebPart control to another control.
public:
virtual void EndWebPartConnecting();
public virtual void EndWebPartConnecting ();
abstract member EndWebPartConnecting : unit -> unit
override this.EndWebPartConnecting : unit -> unit
Public Overridable Sub EndWebPartConnecting ()
Exceptions
The control referenced by the SelectedWebPart property is null
.
Remarks
The EndWebPartConnecting method finishes the process of connecting a WebPart control to another control. It is the counterpart to the BeginWebPartConnecting method.
The EndWebPartConnecting method ensures that the personalization object referenced by the Personalization property is modifiable, which is necessary because forming a connection is itself a type of personalization. The method then ensures that the SelectedWebPart object is not null
, and finally calls the OnSelectedWebPartChanged method.
Notes to Inheritors
Developers who need to extend the WebPartManager control might want to override this method in a derived class. One approach would be to call the base method and then add some additional custom handling, or you might want to completely customize the entire process of completing a connection between controls.