共用方式為


ActionAttribute 類別

定義

標幟方法以回應 Objective-C 動作

[System.AttributeUsage(System.AttributeTargets.Method)]
public sealed class ActionAttribute : Foundation.ExportAttribute
type ActionAttribute = class
    inherit ExportAttribute
繼承
ActionAttribute
屬性

備註

您可以將這個屬性套用至方法,將它轉換成 Objective-C world 可以叫用的動作。

[Action ("clicked:")]
void Submit (NSObject sender)
{
 // User has clicked on the Submit button, respond to this action
}

建構函式

ActionAttribute()

初始化 Action 屬性的新實例

ActionAttribute(String)

使用指定的選取器建立動作的新實例。

屬性

ArgumentSemantic

setter 屬性或方法上物件擁有權的語意。

(繼承來源 ExportAttribute)
IsVariadic

標幟方法以回應 Objective-C 動作

(繼承來源 ExportAttribute)
Selector

如果指定,則為 C# 選取器的名稱,如果衍生自屬性名稱或方法,則為 null。

(繼承來源 ExportAttribute)

方法

ToGetter(PropertyInfo)

標幟方法以回應 Objective-C 動作

(繼承來源 ExportAttribute)
ToSetter(PropertyInfo)

標幟方法以回應 Objective-C 動作

(繼承來源 ExportAttribute)

適用於