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!

ConstructorInfo Class

Retrieves the name of the class constructor method as it is stored in metadata. This name is always ".ctor"

Object
   MemberInfo
      MethodBase
         ConstructorInfo

[Visual Basic]
MustInherit Public Class ConstructorInfo
   Inherits MethodBase
[C#]
public abstract class ConstructorInfo : MethodBase
[C++]
public __gc __abstract class ConstructorInfo : public MethodBase
[JScript]
public abstract class ConstructorInfo extends MethodBase

Remarks

ConstructorInfo is used to discover the attributes of a constructor as well as to invoke a constructor. ConstructorInfo is an abstract class and does not have a public constructor. Objects are created by invoking either the GetConstructors() or GetConstructor() method of a Type object.

Requirements

Namespace: System.Reflection

Assembly: mscorlib.dll

See Also

ConstructorInfo Members | System.Reflection Namespace