IWebFormsDocumentService.LoadComplete Event
Occurs when the service has finished loading.
[Visual Basic] Event LoadComplete As EventHandler [C#] event EventHandler LoadComplete; [C++] __event EventHandler* LoadComplete;
[JScript] In JScript, you can handle the events defined by a class, but you cannot define your own.
Event Data
The event handler receives an argument of type EventArgs.
Remarks
This event provides an opportunity to perform operations immediately after loading has completed. Events that should occur at load time can be registered as event handlers for this event.
Example
[Visual Basic] AddHandler docService.LoadComplete, AddressOf Me.OnLoadComplete [C#] docService.LoadComplete += new EventHandler(this.OnLoadComplete); [C++] docService->LoadComplete += new EventHandler(this, &WebFormsDocumentServiceExample::OnLoadComplete);
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
.NET Framework Security:
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries From Partially Trusted Code
See Also
IWebFormsDocumentService Interface | IWebFormsDocumentService Members | System.Web.UI.Design Namespace