DisableRuntimeMarshallingAttribute 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
禁用 P/Invokes、委托类型和非托管函数指针调用的内置运行时托管/非托管封送子系统。
public ref class DisableRuntimeMarshallingAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Assembly, AllowMultiple=false, Inherited=false)]
public sealed class DisableRuntimeMarshallingAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Assembly, AllowMultiple=false, Inherited=false)>]
type DisableRuntimeMarshallingAttribute = class
inherit Attribute
Public NotInheritable Class DisableRuntimeMarshallingAttribute
Inherits Attribute
- 继承
- 属性
注解
内置的封送处理子系统具有一些由于向后兼容性要求而无法更改的行为。 此属性允许禁用内置子系统,并改为对 P/Invokes、Delegates 和非托管函数指针调用使用以下规则:
- 在 C#) 中递归 (
unmanaged
不包含引用类型字段的所有值类型都是 blittable 的。 - 递归方式具有任何字段
[StructLayout(LayoutKind.Auto)]
的值类型不允许互操作。 - 不允许在互操作方案中使用所有引用类型。
- P/Invokes 中的 SetLastError 支持已禁用。
- varargs 支持已禁用。
- LCIDConversionAttribute 支持已禁用。
构造函数
DisableRuntimeMarshallingAttribute() |
DisableRuntimeMarshallingAttribute使用默认值初始化 实例。 |
属性
TypeId |
在派生类中实现时,获取此 Attribute 的唯一标识符。 (继承自 Attribute) |
方法
Equals(Object) |
返回一个值,该值指示此实例是否与指定的对象相等。 (继承自 Attribute) |
GetHashCode() |
返回此实例的哈希代码。 (继承自 Attribute) |
GetType() |
获取当前实例的 Type。 (继承自 Object) |
IsDefaultAttribute() |
在派生类中重写时,指示此实例的值是否是派生类的默认值。 (继承自 Attribute) |
Match(Object) |
当在派生类中重写时,返回一个指示此实例是否等于指定对象的值。 (继承自 Attribute) |
MemberwiseClone() |
创建当前 Object 的浅表副本。 (继承自 Object) |
ToString() |
返回表示当前对象的字符串。 (继承自 Object) |