次の方法で共有


Action コンストラクター

定義

オーバーロード

Action()

Action クラスの新しいインスタンスを初期化します。

Action(String, IList<Parameter>)

Action クラスの新しいインスタンスを初期化します。

Action()

Action クラスの新しいインスタンスを初期化します。

public Action ();
Public Sub New ()

適用対象

Action(String, IList<Parameter>)

Action クラスの新しいインスタンスを初期化します。

public Action (string type = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.Parameter> parameters = default);
new Microsoft.Azure.Management.Network.Models.Action : string * System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.Parameter> -> Microsoft.Azure.Management.Network.Models.Action
Public Sub New (Optional type As String = Nothing, Optional parameters As IList(Of Parameter) = Nothing)

パラメーター

type
String

実行するアクションの種類。 サポートされている型は、'Remove'、'Add'、'Replace'、および 'Drop.' です。 使用できる値は、'Unknown'、'Remove'、'Add'、'Replace'、'Drop' です。

parameters
IList<Parameter>

アクションに関連するパラメーターの一覧。たとえば、type が drop の場合、パラメーターには削除するプレフィックスの一覧があります。type が add の場合、パラメーターには追加する ASN 番号の一覧が含まれます

適用対象