BlockProxyAttribute 类

定义

此属性用于通知运行时哪个类用于将 Objective-C 块包装到托管委托中。

[System.AttributeUsage(System.AttributeTargets.Parameter, AllowMultiple=false)]
public sealed class BlockProxyAttribute : Attribute
type BlockProxyAttribute = class
    inherit Attribute
继承
BlockProxyAttribute
属性

注解

Xamarin.iOS 的内部人员使用此类型。

此属性应用于参数,并由 Xamarin.iOS 运行时用来查找帮助程序类,该类用于将 Objective-C 块转换为托管委托,托管代码稍后可以调用该委托来触发本机块执行。

构造函数

BlockProxyAttribute(Type)

指定用于将块代理到托管委托中的类型。

属性

Type

用于将 Objective-C 块代理到此托管参数的类型。

适用于