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!

Type.GetConstructors ()

Returns all the public constructors defined for the current Type.

[Visual Basic]
Overloads Public Function GetConstructors() As ConstructorInfo ()
[C#]
public ConstructorInfo[] GetConstructors();
[C++]
public: ConstructorInfo* GetConstructors() [];
[JScript]
public function GetConstructors() : ConstructorInfo[];

Return Value

An array of ConstructorInfo objects representing all the public constructors defined for the current Type, including the type initializer if it is defined.

-or-

An empty array of type ConstructorInfo, if no public constructors are defined for the current Type.

Remarks

Class initializers are available through GetMember, GetMembers, FindMembers, and GetConstructors.

See Also

Type Class | Type Members | System Namespace | Type.GetConstructors Overload List