ActionAttribute クラス

定義

Objective-C アクションに応答するようにメソッドにフラグを設定する

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

注釈

この属性をメソッドに適用し、Objective-C ワールドによって呼び出すことができるアクションに変換できます。

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

コンストラクター

ActionAttribute()

Action 属性の新しいインスタンスを初期化します

ActionAttribute(String)

指定されたセレクターを使用して、アクション attribtue の新しいインスタンスを作成します。

プロパティ

ArgumentSemantic

セッター プロパティまたはメソッドでのオブジェクト所有権のセマンティクス。

(継承元 ExportAttribute)
IsVariadic

Objective-C アクションに応答するようにメソッドにフラグを設定する

(継承元 ExportAttribute)
Selector

指定した場合は C# セレクターの名前、プロパティ名またはメソッドから派生した場合は null。

(継承元 ExportAttribute)

メソッド

ToGetter(PropertyInfo)

Objective-C アクションに応答するようにメソッドにフラグを設定する

(継承元 ExportAttribute)
ToSetter(PropertyInfo)

Objective-C アクションに応答するようにメソッドにフラグを設定する

(継承元 ExportAttribute)

適用対象