MethodBuilder.Module Propriedade
Definição
Obtém o módulo no qual o método atual está sendo definido.Gets the module in which the current method is being defined.
public:
virtual property System::Reflection::Module ^ Module { System::Reflection::Module ^ get(); };
public override System.Reflection.Module Module { get; }
member this.Module : System.Reflection.Module
Public Overrides ReadOnly Property Module As Module
Valor da propriedade
O Module no qual o membro representado pelo atual MemberInfo está sendo definido.The Module in which the member represented by the current MemberInfo is being defined.
Comentários
Essa propriedade é fornecida como uma conveniência.This property is provided as a convenience. É equivalente a usar a DeclaringType propriedade para obter o tipo no qual o método está sendo declarado e, em seguida, chamar a Module Propriedade do Type objeto resultante.It is equivalent to using the DeclaringType property to get the type in which the method is being declared, and then calling the Module property of the resulting Type object.
Essa propriedade também é equivalente a chamar GetModule .This property is also equivalent to calling GetModule.