IDynamicMetaObjectProvider Interface

Definição

Representa um objeto dinâmico, que pode ter suas operações associadas no runtime.Represents a dynamic object, that can have its operations bound at runtime.

public interface class IDynamicMetaObjectProvider
public interface IDynamicMetaObjectProvider
type IDynamicMetaObjectProvider = interface
Public Interface IDynamicMetaObjectProvider
Derivado

Comentários

Os objetos que desejam participar do processo de ligação devem implementar uma interface IDynamicMetaObjectProvider e implementar GetMetaObject para retornar um DynamicMetaObject .Objects that want to participate in the binding process should implement an IDynamicMetaObjectProvider interface, and implement GetMetaObject to return a DynamicMetaObject.

Para obter mais informações, baixe o artigo implementando interfaces dinâmicas disponíveis no formato PDF.For more information, download the Implementing Dynamic Interfaces article available in PDF format.

Métodos

GetMetaObject(Expression)

Retorna o DynamicMetaObject responsável pelas operações de associação executadas neste objeto.Returns the DynamicMetaObject responsible for binding operations performed on this object.

Aplica-se a