DekGenius.com
[ Team LiB ] Previous Section Next Section

IDispatchImplTypeserializable

System.Runtime.InteropServices (mscorlib.dll)enum

This enumeration contains the values used by IDispatchImplAttribute. SystemDefinedImpl tells the runtime to decide which IDispatch implementation to use. InternalImpl tells .NET to use its own IDispatch implementation, and CompatibleImpl uses an IDispatch implementation that is compatible with OLE automation. If you use this last implementation, it requires static type information. Because this information is automatically generated at runtime, CompatibleImpl may have an adverse impact on performance.

public enum IDispatchImplType {
   SystemDefinedImpl = 0,
   InternalImpl = 1,
   CompatibleImpl = 2
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparable, System.IFormattable, System.IConvertible) IDispatchImplType

Returned By

IDispatchImplAttribute.Value

Passed To

IDispatchImplAttribute.IDispatchImplAttribute( )

    [ Team LiB ] Previous Section Next Section