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

Gets the constructors of the current Type.

Overload List

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[];

When implemented by a derived class, searches for the constructors defined for the current Type, using the specified binding constraints.

[Visual Basic] Overloads MustOverride Public Function GetConstructors(BindingFlags) As ConstructorInfo ()
[C#] public abstract ConstructorInfo[] GetConstructors(BindingFlags);
[C++] public: virtual ConstructorInfo* GetConstructors(BindingFlags) [] = 0;
[JScript] public abstract function GetConstructors(BindingFlags) : ConstructorInfo[];

See Also

Type Class | Type Members | System Namespace