Classe TypeIdentifierAttribute
Publicado: agosto de 2016
Dica
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.
Dá suporte à equivalência de tipo.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (em mscorlib.dll)
Hierarquia de Herança
System.Object
System.Attribute
System.Runtime.InteropServices.TypeIdentifierAttribute
Sintaxe
[AttributeUsageAttribute(AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Delegate,
AllowMultiple = false, Inherited = false)]
[ComVisibleAttribute(false)]
public sealed class TypeIdentifierAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Struct | AttributeTargets::Enum | AttributeTargets::Interface | AttributeTargets::Delegate,
AllowMultiple = false, Inherited = false)]
[ComVisibleAttribute(false)]
public ref class TypeIdentifierAttribute sealed : Attribute
[<Sealed>]
[<AttributeUsageAttribute(AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Delegate,
AllowMultiple = false, Inherited = false)>]
[<ComVisibleAttribute(false)>]
type TypeIdentifierAttribute =
class
inherit Attribute
end
<AttributeUsageAttribute(AttributeTargets.Struct Or AttributeTargets.Enum Or AttributeTargets.Interface Or AttributeTargets.Delegate,
AllowMultiple := False, Inherited := False)>
<ComVisibleAttribute(False)>
Public NotInheritable Class TypeIdentifierAttribute
Inherits Attribute
Construtores
Nome | Descrição | |
---|---|---|
TypeIdentifierAttribute() | Cria uma nova instância da classe TypeIdentifierAttribute. |
|
TypeIdentifierAttribute(String, String) | Cria uma nova instância da classe TypeIdentifierAttribute com o escopo especificado e o identificador. |
Propriedades
Nome | Descrição | |
---|---|---|
Identifier | Obtém o valor do parâmetro identifier que foi passado ao construtor TypeIdentifierAttribute(String, String). |
|
Scope | Obtém o valor do parâmetro scope que foi passado ao construtor TypeIdentifierAttribute(String, String). |
|
TypeId | Quando implementado em uma classe derivada, obtém um identificador exclusivo para este Attribute.(Herdado de Attribute.) |
Métodos
Nome | Descrição | |
---|---|---|
Equals(Object) | Esta API dá suporte à infraestrutura produto e não se destina a ser usada diretamente do seu código. Retorna um valor que indica se essa instância é igual a um objeto especificado.(Herdado de Attribute.) |
|
GetHashCode() | Retorna o código hash para essa instância.(Herdado de Attribute.) |
|
GetType() | ||
IsDefaultAttribute() | Quando substituído em uma classe derivada, indica se o valor dessa instância é o valor padrão para a classe derivada.(Herdado de Attribute.) |
|
Match(Object) | Quando substituído em uma classe derivada, retorna um valor que indica se essa instância é igual a um objeto especificado.(Herdado de Attribute.) |
|
ToString() | Retorna uma cadeia de caracteres que representa o objeto atual.(Herdado de Object.) |
Implementações Explícitas da Interface
Nome | Descrição | |
---|---|---|
_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr) | Mapeia um conjunto de nomes para um conjunto correspondente de identificadores de expedição.(Herdado de Attribute.) |
|
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr) | Recupera as informações de tipo para um objeto, que pode ser usado para obter as informações de tipo para uma interface.(Herdado de Attribute.) |
|
_Attribute.GetTypeInfoCount(UInt32) | Retorna o número de interfaces de informações do tipo que um objeto fornece (0 ou 1).(Herdado de Attribute.) |
|
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr) | Fornece acesso a propriedades e métodos expostos por um objeto.(Herdado de Attribute.) |
Comentários
O TypeIdentifierAttribute atributo principalmente é emitido por compiladores. Ele tem duas finalidades:
Para todos os tipos importados, ele indica que o tipo é destinado a ser usado para equivalência de tipo.
Para tipos que não têm GUIDs em sua biblioteca de tipo, ele tem um construtor que usa duas cadeias de caracteres (scope e identifier). Eles são combinados em um GUID e tornam-se a chave que é usada para equivalência de tipo.
Equivalência de tipo é abordada no Type.IsEquivalentTo tópico.
Informações de Versão
Plataforma Universal do Windows
Disponível desde 8
.NET Framework
Disponível desde 4.0
Biblioteca de Classes Portátil
Com suporte no: plataformas portáteis do .NET
Windows Phone
Disponível desde 8.1
Acesso thread-safe
Quaisquer membros estáticos públicos ( Compartilhado no Visual Basic) desse tipo são thread-safe. Não há garantia de que qualquer membro de instância seja thread-safe.
Confira Também
Namespace System.Runtime.InteropServices
Estendendo metadados por meio de atributos
Retornar ao início