ConstructorBuilder Properties

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

The ConstructorBuilder type exposes the following members.

Properties

  Name Description
Public property Attributes Gets the attributes for this constructor. (Overrides MethodBase.Attributes.)
Public property CallingConvention Gets the calling convention for this constructor. (Overrides MethodBase.CallingConvention.)
Public property ContainsGenericParameters Gets a value that indicates whether the generic method contains unassigned generic type parameters. (Inherited from MethodBase.)
Public property DeclaringType Gets the dynamic type that declares this constructor. (Overrides MemberInfo.DeclaringType.)
Public property InitLocals Gets or sets a value that specifies whether the local variables in this constructor will be zero-initialized.
Public property IsAbstract Gets a value that indicates whether the method is abstract (MustInherit in Visual Basic). (Inherited from MethodBase.)
Public property IsAssembly Gets a value that indicates whether the potential visibility of this method or constructor is described by MethodAttributes.Assembly; that is, the method or constructor is visible at most to other types in the same assembly, and is not visible to derived types outside the assembly. (Inherited from MethodBase.)
Public property IsConstructor Gets a value that indicates whether the method is a constructor. (Inherited from MethodBase.)
Public property IsFamily Gets a value that indicates whether the visibility of this method or constructor is described by MethodAttributes.Family; that is, the method or constructor is visible only within its class and derived classes. (Inherited from MethodBase.)
Public property IsFamilyAndAssembly Gets a value that indicates whether the visibility of this method or constructor is described by MethodAttributes.FamANDAssem; that is, the method or constructor can be called by derived classes, but only if they are in the same assembly. (Inherited from MethodBase.)
Public property IsFamilyOrAssembly Gets a value that indicates whether the potential visibility of this method or constructor is described by MethodAttributes.FamORAssem; that is, the method or constructor can be called by derived classes wherever they are, and by classes in the same assembly. (Inherited from MethodBase.)
Public property IsFinal Gets a value that indicates whether this method is final (NotOverridable in Visual Basic). (Inherited from MethodBase.)
Public property IsGenericMethod Gets a value that indicates whether the method is generic. (Inherited from MethodBase.)
Public property IsGenericMethodDefinition Gets a value that indicates whether the method is a generic method definition. (Inherited from MethodBase.)
Public property IsHideBySig Gets a value that indicates whether only a member of the same kind with exactly the same signature is hidden in the derived class. (Inherited from MethodBase.)
Public property IsPrivate Gets a value that indicates whether this member is private. (Inherited from MethodBase.)
Public property IsPublic Gets a value that indicates whether this is a public method. (Inherited from MethodBase.)
Public property IsSpecialName Gets a value that indicates whether this method has a special name. (Inherited from MethodBase.)
Public property IsStatic Gets a value that indicates whether the method is static (Shared in Visual Basic). (Inherited from MethodBase.)
Public property IsVirtual Gets a value that indicates whether the method is virtual (Overridable in Visual Basic). (Inherited from MethodBase.)
Public property MemberType Gets a MemberTypes value indicating that this member is a constructor. (Inherited from ConstructorInfo.)
Public property MetadataToken Gets a value that identifies a metadata element. (Inherited from MemberInfo.)
Public property MethodHandle Gets the handle for the constructor. This property is not supported. (Overrides MethodBase.MethodHandle.)
Public property Module Gets the dynamic module in which this constructor is defined. (Overrides MemberInfo.Module.)
Public property Name Retrieves the name of this constructor. (Overrides MemberInfo.Name.)
Public property ReflectedType Gets the dynamic type on which this property is defined. (Overrides MemberInfo.ReflectedType.)
Public property Signature Gets a string representation of the signature of the constructor.

Top