TypeBuilder.IsCreated Método
Definição
Retorna um valor que indica se o tipo dinâmico atual foi criado.Returns a value that indicates whether the current dynamic type has been created.
public:
bool IsCreated();
public bool IsCreated ();
member this.IsCreated : unit -> bool
Public Function IsCreated () As Boolean
Retornos
true se o método CreateType() tiver sido chamado; caso contrário, false.true if the CreateType() method has been called; otherwise, false.
Comentários
Depois que o CreateType método for chamado, o tipo representado pelo TypeBuilder objeto será concluído.After the CreateType method has been called, the type represented by the TypeBuilder object is complete. As exceções são geradas em qualquer tentativa adicional de adicionar membros ou alterar outras características do tipo.Exceptions are thrown on any further attempts to add members or change other characteristics of the type.