NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Assembly.AddOnTypeResolve

Subscribes to the "type resolve" event. The "type resolve" event is raised when a type is loaded.

[Visual Basic]
Overridable Public Sub AddOnTypeResolve( _
   ByVal handler As ResolveEventHandler _
)
[C#]
public virtual void AddOnTypeResolve(
   ResolveEventHandler handler
);
[C++]
public: virtual void AddOnTypeResolve(
   ResolveEventHandler* handler
);
[JScript]
public function AddOnTypeResolve(
   handler : ResolveEventHandler
);

Parameters

handler
The event handler for the "type resolve" event.

Remarks

The argument passed to the ResolveEventHandler is the full type name qualified by the display name of the assembly in which the type was found. The format is:

<FullTypeName>, <AssemblyDisplayName>

See AssemblyName for a description of the format of the display name of an assembly.

See Also

Assembly Class | Assembly Members | System.Reflection Namespace