RouteProperties コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
RouteProperties() |
RouteProperties クラスの新しいインスタンスを初期化します。 |
RouteProperties(String, String, IList<String>, Boolean, String) |
RouteProperties クラスの新しいインスタンスを初期化します。 |
RouteProperties()
RouteProperties クラスの新しいインスタンスを初期化します。
public RouteProperties ();
Public Sub New ()
適用対象
RouteProperties(String, String, IList<String>, Boolean, String)
RouteProperties クラスの新しいインスタンスを初期化します。
public RouteProperties (string name, string source, System.Collections.Generic.IList<string> endpointNames, bool isEnabled, string condition = default);
new Microsoft.Azure.Management.IotHub.Models.RouteProperties : string * string * System.Collections.Generic.IList<string> * bool * string -> Microsoft.Azure.Management.IotHub.Models.RouteProperties
Public Sub New (name As String, source As String, endpointNames As IList(Of String), isEnabled As Boolean, Optional condition As String = Nothing)
パラメーター
- name
- String
ルートの名前。 名前には、英数字、ピリオド、アンダースコア、ハイフンのみを含めることができます。最大長は 64 文字で、一意である必要があります。
- source
- String
ルーティング規則を適用するソース (DeviceMessages など)。 使用できる値は、'Invalid'、'DeviceMessages'、'TwinChangeEvents'、'DeviceLifecycleEvents'、'DeviceJobLifecycleEvents'、'DeviceConnectionStateEvents' です。
- isEnabled
- Boolean
ルートを有効にするかどうかを指定するために使用します。
- condition
- String
ルーティング規則を適用するために評価される条件。 条件が指定されていない場合は、既定で true と評価されます。 文法については、次を参照してください。 https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-query-language
適用対象
Azure SDK for .NET