using System; namespace System.Runtime.InteropServices { /// Use instead. // Token: 0x02000314 RID: 788 [Obsolete] [Flags] [Serializable] public enum FUNCFLAGS { /// The function should not be accessible from macro languages. This flag is intended for system-level functions or functions that type browsers should not display. // Token: 0x04000D28 RID: 3368 FUNCFLAG_FRESTRICTED = 1, /// The function returns an object that is a source of events. // Token: 0x04000D29 RID: 3369 FUNCFLAG_FSOURCE = 2, /// The function that supports data binding. // Token: 0x04000D2A RID: 3370 FUNCFLAG_FBINDABLE = 4, /// When set, any call to a method that sets the property results first in a call to IPropertyNotifySink::OnRequestEdit. The implementation of OnRequestEdit determines if the call is allowed to set the property. // Token: 0x04000D2B RID: 3371 FUNCFLAG_FREQUESTEDIT = 8, /// The function that is displayed to the user as bindable. must also be set. // Token: 0x04000D2C RID: 3372 FUNCFLAG_FDISPLAYBIND = 16, /// The function that best represents the object. Only one function in a type information can have this attribute. // Token: 0x04000D2D RID: 3373 FUNCFLAG_FDEFAULTBIND = 32, /// The function should not be displayed to the user, although it exists and is bindable. // Token: 0x04000D2E RID: 3374 FUNCFLAG_FHIDDEN = 64, /// The function supports GetLastError. If an error occurs during the function, the caller can call GetLastError to retrieve the error code. // Token: 0x04000D2F RID: 3375 FUNCFLAG_FUSESGETLASTERROR = 128, /// Permits an optimization in which the compiler looks for a member named "xyz" on the type of "abc". If such a member is found, and is flagged as an accessor function for an element of the default collection, a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules. // Token: 0x04000D30 RID: 3376 FUNCFLAG_FDEFAULTCOLLELEM = 256, /// The type information member is the default member for display in the user interface. // Token: 0x04000D31 RID: 3377 FUNCFLAG_FUIDEFAULT = 512, /// The property appears in an object browser, but not in a properties browser. // Token: 0x04000D32 RID: 3378 FUNCFLAG_FNONBROWSABLE = 1024, /// Tags the interface as having default behaviors. // Token: 0x04000D33 RID: 3379 FUNCFLAG_FREPLACEABLE = 2048, /// Mapped as individual bindable properties. // Token: 0x04000D34 RID: 3380 FUNCFLAG_FIMMEDIATEBIND = 4096 } }