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!

Delegate.GetMethodImpl

Gets the static method of the class represented by the Delegate.

[Visual Basic]
Overridable Protected Function GetMethodImpl() As MethodInfo
[C#]
protected virtual MethodInfo GetMethodImpl();
[C++]
protected: virtual MethodInfo* GetMethodImpl();
[JScript]
protected function GetMethodImpl() : MethodInfo;

Return Value

A MethodInfo describing the static method represented by the Delegate.

Exceptions

Exception Type Condition
AccessException The caller does not have access to the method represented by the Delegate; for instance, if the method is private. (?)

Remarks

This method can be overridden by a derived class.

See Also

Delegate Class | Delegate Members | System Namespace | MethodInfo | Method