IDLFLAG Enumeración
Definición
Describe cómo transferir un elemento de estructura, un parámetro o un valor devuelto de función entre los procesos.Describes how to transfer a structure element, parameter, or function return value between processes.
Esta enumeración tiene el atributo FlagsAttribute, que permite una combinación bit a bit de sus valores de miembro.
public enum class IDLFLAG
[System.Flags]
[System.Serializable]
public enum IDLFLAG
type IDLFLAG =
Public Enum IDLFLAG
- Herencia
- Atributos
Campos
IDLFLAG_FIN | 1 | El parámetro pasa información del que llama al llamado.The parameter passes information from the caller to the callee. |
IDLFLAG_FLCID | 4 | El parámetro es el identificador local de una aplicación cliente.The parameter is the local identifier of a client application. |
IDLFLAG_FOUT | 2 | El parámetro devuelve información del llamado al que llama.The parameter returns information from the callee to the caller. |
IDLFLAG_FRETVAL | 8 | El parámetro es el valor devuelto del miembro.The parameter is the return value of the member. |
IDLFLAG_NONE | 0 | No especifica si el parámetro pasa o recibe información.Does not specify whether the parameter passes or receives information. |
Comentarios
El Common Language Runtime produce una excepción cuando un método COM en código nativo devuelve un valor HRESULT.The common language runtime throws an exception when a COM method in native code returns an HRESULT. Para obtener más información, consulta How to: Map HRESULTs and Exceptions.For more information, see How to: Map HRESULTs and Exceptions.