OutletAttribute 类

定义

将给定属性公开为 Objective-C 世界的出口。

[System.AttributeUsage(System.AttributeTargets.Property)]
public sealed class OutletAttribute : Foundation.ExportAttribute
type OutletAttribute = class
    inherit ExportAttribute
继承
OutletAttribute
属性

注解

此属性用于标记需要作为 Objective-C 世界的出口公开的属性。 设计器支持以及将托管对象与非托管 Objective-C 输出点连接在一起时使用。

[Outlet ("mainWindow")]
UIWindows mainWindow  { get; set; }

构造函数

OutletAttribute()

默认构造函数

OutletAttribute(String)

将托管属性与指定的 Objective-C 输出点链接。

属性

ArgumentSemantic

setter 属性或方法上的对象所有权的语义。

(继承自 ExportAttribute)
IsVariadic

将给定属性公开为 Objective-C 世界的出口。

(继承自 ExportAttribute)
Selector

C# 选择器的名称(如果已指定),如果从属性名称或方法派生,则为 null。

(继承自 ExportAttribute)

方法

ToGetter(PropertyInfo)

将给定属性公开为 Objective-C 世界的出口。

(继承自 ExportAttribute)
ToSetter(PropertyInfo)

将给定属性公开为 Objective-C 世界的出口。

(继承自 ExportAttribute)

适用于