ConnectionProviderAttribute.ConnectionPointType Propriedade
Definição
Obtém o tipo do ponto de conexão associado a um controle do provedor.Gets the type of the connection point associated with a provider control.
public:
property Type ^ ConnectionPointType { Type ^ get(); };
public Type ConnectionPointType { get; }
member this.ConnectionPointType : Type
Public ReadOnly Property ConnectionPointType As Type
Valor da propriedade
Um Type que indica o tipo do ponto de conexão.A Type that indicates the type of the connection point.
Exceções
Um tipo de ponto de conexão inválido (um não derivado da classe ProviderConnectionPoint) foi usado.An invalid connection point type (one that does not derive from the ProviderConnectionPoint class) was used.
Comentários
Essa propriedade retorna o Type do ponto de conexão do provedor.This property returns the Type of the provider connection point. O Type deve derivar de ProviderConnectionPoint e quando você declarar o connectionPointType parâmetro com um ConnectionProviderAttribute elemento de metadados em um método de retorno de chamada, uma instância do tipo declarado é usada para criar um ponto de conexão em vez da ProviderConnectionPoint classe padrão.The Type must derive from ProviderConnectionPoint, and when you declare the connectionPointType parameter with a ConnectionProviderAttribute metadata element on a callback method, an instance of the type you declare is used to create a connection point instead of the standard ProviderConnectionPoint class.