Marshal.GetTypeInfoName Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Recupera el nombre del tipo representado por un objeto ITypeInfo.
Sobrecargas
GetTypeInfoName(UCOMITypeInfo) |
Obsoletos.
Recupera el nombre del tipo representado por un objeto ITypeInfo. |
GetTypeInfoName(ITypeInfo) |
Recupera el nombre del tipo representado por un objeto ITypeInfo. |
GetTypeInfoName(UCOMITypeInfo)
Precaución
Use System.Runtime.InteropServices.Marshal.GetTypeInfoName(ITypeInfo pTLB) instead. http://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.
Recupera el nombre del tipo representado por un objeto ITypeInfo.
public:
static System::String ^ GetTypeInfoName(System::Runtime::InteropServices::UCOMITypeInfo ^ pTI);
public static string GetTypeInfoName (System.Runtime.InteropServices.UCOMITypeInfo pTI);
[System.Obsolete("Use System.Runtime.InteropServices.Marshal.GetTypeInfoName(ITypeInfo pTLB) instead. http://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.", false)]
public static string GetTypeInfoName (System.Runtime.InteropServices.UCOMITypeInfo pTI);
[System.Obsolete("Use System.Runtime.InteropServices.Marshal.GetTypeInfoName(ITypeInfo pTLB) instead. http://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.", false)]
[System.Security.SecurityCritical]
public static string GetTypeInfoName (System.Runtime.InteropServices.UCOMITypeInfo pTI);
static member GetTypeInfoName : System.Runtime.InteropServices.UCOMITypeInfo -> string
[<System.Obsolete("Use System.Runtime.InteropServices.Marshal.GetTypeInfoName(ITypeInfo pTLB) instead. http://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.", false)>]
static member GetTypeInfoName : System.Runtime.InteropServices.UCOMITypeInfo -> string
[<System.Obsolete("Use System.Runtime.InteropServices.Marshal.GetTypeInfoName(ITypeInfo pTLB) instead. http://go.microsoft.com/fwlink/?linkid=14202&ID=0000011.", false)>]
[<System.Security.SecurityCritical>]
static member GetTypeInfoName : System.Runtime.InteropServices.UCOMITypeInfo -> string
Public Shared Function GetTypeInfoName (pTI As UCOMITypeInfo) As String
Parámetros
- pTI
- UCOMITypeInfo
Objeto que representa un puntero ITypeInfo
.
Devoluciones
Nombre del tipo al que apunta el parámetro pTI
.
- Atributos
Comentarios
También puede recuperar el nombre del tipo representado por un ITypeInfo
objeto llamando al UCOMITypeInfo.GetDocumentation método y pasando -1 para su primer parámetro.
Consulte también
Se aplica a
GetTypeInfoName(ITypeInfo)
- Source:
- Marshal.NoCom.cs
- Source:
- Marshal.NoCom.cs
- Source:
- Marshal.NoCom.cs
Recupera el nombre del tipo representado por un objeto ITypeInfo.
public:
static System::String ^ GetTypeInfoName(System::Runtime::InteropServices::ComTypes::ITypeInfo ^ typeInfo);
[System.Security.SecurityCritical]
public static string GetTypeInfoName (System.Runtime.InteropServices.ComTypes.ITypeInfo typeInfo);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public static string GetTypeInfoName (System.Runtime.InteropServices.ComTypes.ITypeInfo typeInfo);
public static string GetTypeInfoName (System.Runtime.InteropServices.ComTypes.ITypeInfo typeInfo);
[<System.Security.SecurityCritical>]
static member GetTypeInfoName : System.Runtime.InteropServices.ComTypes.ITypeInfo -> string
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
static member GetTypeInfoName : System.Runtime.InteropServices.ComTypes.ITypeInfo -> string
static member GetTypeInfoName : System.Runtime.InteropServices.ComTypes.ITypeInfo -> string
Public Shared Function GetTypeInfoName (typeInfo As ITypeInfo) As String
Parámetros
- typeInfo
- ITypeInfo
Objeto que representa un puntero ITypeInfo
.
Devoluciones
Nombre del tipo al que apunta el parámetro typeInfo
.
- Atributos
Excepciones
El parámetro typeInfo
es null
.
Comentarios
También puede recuperar el nombre del tipo representado mediante una ITypeInfo
llamada al UCOMITypeInfo.GetDocumentation método y pasando -1 para su primer parámetro.