PARAMFLAG Enumeração
Definição
Descreve como transferir um elemento de estrutura, parâmetro ou valor retornado da função entre processos.Describes how to transfer a structure element, parameter, or function return value between processes.
Esta enumeração tem um atributo FlagsAttribute que permite uma combinação bit a bit dos valores membros dela.
public enum class PARAMFLAG
[System.Flags]
public enum PARAMFLAG
[System.Flags]
[System.Serializable]
public enum PARAMFLAG
[<System.Flags>]
type PARAMFLAG =
[<System.Flags>]
[<System.Serializable>]
type PARAMFLAG =
Public Enum PARAMFLAG
- Herança
- Atributos
Campos
| PARAMFLAG_FHASCUSTDATA | 64 | O parâmetro tem dados personalizados.The parameter has custom data. |
| PARAMFLAG_FHASDEFAULT | 32 | O parâmetro tem comportamentos padrão definidos.The parameter has default behaviors defined. |
| PARAMFLAG_FIN | 1 | O parâmetro passa informações do chamador para o computador chamado.The parameter passes information from the caller to the callee. |
| PARAMFLAG_FLCID | 4 | O parâmetro é o identificador de local de um aplicativo cliente.The parameter is the local identifier of a client application. |
| PARAMFLAG_FOPT | 16 | O parâmetro é opcional.The parameter is optional. |
| PARAMFLAG_FOUT | 2 | O parâmetro retorna informações do computador chamado para o chamador.The parameter returns information from the callee to the caller. |
| PARAMFLAG_FRETVAL | 8 | O parâmetro é o valor retornado do membro.The parameter is the return value of the member. |
| PARAMFLAG_NONE | 0 | Não especifica se o parâmetro passa ou recebe informações.Does not specify whether the parameter passes or receives information. |
Comentários
O Common Language Runtime gera uma exceção quando um método COM no código nativo retorna um HRESULT.The common language runtime throws an exception when a COM method in native code returns an HRESULT. Para obter mais informações, consulte como mapear HRESULTs e exceções.For more information, see How to: Map HRESULTs and Exceptions.