This documentation is archived and is not being maintained.
IDLFLAG Enumeration
.NET Framework 1.1
Describes how to transfer a structure element, parameter, or function return value between processes.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Visual Basic] <Flags> <Serializable> <ComVisible(False)> Public Enum IDLFLAG [C#] [Flags] [Serializable] [ComVisible(false)] public enum IDLFLAG [C++] [Flags] [Serializable] [ComVisible(false)] __value public enum IDLFLAG [JScript] public Flags Serializable ComVisible(false) enum IDLFLAG
Members
| Member name | Description | Value |
|---|---|---|
| IDLFLAG_FIN | The parameter passes information from the caller to the callee. | 1 |
| IDLFLAG_FLCID | The parameter is the local identifier of a client application. | 4 |
| IDLFLAG_FOUT | The parameter returns information from the callee to the caller. | 2 |
| IDLFLAG_FRETVAL | The parameter is the return value of the member. | 8 |
| IDLFLAG_NONE | Whether the parameter passes or receives information is unspecified. | 0 |
Requirements
Namespace: System.Runtime.InteropServices
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Mscorlib (in Mscorlib.dll)
See Also
Show: