Compartir a través de


Constructor TypeIdentifierAttribute (String, String)

 

Publicado: octubre de 2016

Crea una nueva instancia de la TypeIdentifierAttribute clase con el identificador y el ámbito especificado.

Espacio de nombres:   System.Runtime.InteropServices
Ensamblado:  mscorlib (en mscorlib.dll)

Sintaxis

public TypeIdentifierAttribute(
    string scope,
    string identifier
)
public:
TypeIdentifierAttribute(
    String^ scope,
    String^ identifier
)
new : 
        scope:string *
        identifier:string -> TypeIdentifierAttribute
Public Sub New (
    scope As String,
    identifier As String
)

Parámetros

  • scope
    Type: System.String

    La primera cadena de equivalencia de tipos.

  • identifier
    Type: System.String

    La segunda cadena de equivalencia de tipos.

Comentarios

El scope y identifier parámetros se utilizan para establecer la equivalencia de tipos. Que se combinan en un GUID y se convierten en la clave que se utiliza para la equivalencia de tipos. Este constructor es especialmente útil para los tipos que no tienen GUID en su biblioteca de tipos.

La TypeIdentifierAttribute clase internamente mantiene el scope y identifier parámetros como miembros privados.

Información de versión

Plataforma universal de Windows
Disponible desde 8
.NET Framework
Disponible desde 4.0
Biblioteca de clases portable
Se admite en: plataformas portátiles de .NET
Windows Phone
Disponible desde 8.1

Ver también

TypeIdentifierAttribute Sobrecarga
Clase TypeIdentifierAttribute
Espacio de nombres System.Runtime.InteropServices

Volver al principio