次の方法で共有


DataFactoryGlobalParameterProperties クラス

定義

エンティティの 1 つのパラメーターの定義。

public class DataFactoryGlobalParameterProperties
type DataFactoryGlobalParameterProperties = class
Public Class DataFactoryGlobalParameterProperties
継承
DataFactoryGlobalParameterProperties

コンストラクター

DataFactoryGlobalParameterProperties(DataFactoryGlobalParameterType, BinaryData)

DataFactoryGlobalParameterProperties の新しいインスタンスを初期化します。

プロパティ

GlobalParameterType

グローバル パラメーター型。

Value

パラメーターの値。

このプロパティにオブジェクトを割り当てるには、 を使用します FromObjectAsJson<T>(T, JsonSerializerOptions)

このプロパティに既に書式設定された json 文字列を割り当てるには、 を使用します FromString(String)

例 :

  • BinaryData.FromObjectAsJson("foo")ペイロード "foo" を作成します。
  • BinaryData.FromString("\"foo\"")ペイロード "foo" を作成します。
  • BinaryData.FromObjectAsJson(new { key = "value" }){ "key": "value" }のペイロードを作成します。
  • BinaryData.FromString("{\"key\": \"value\"}"){ "key": "value" }のペイロードを作成します。

適用対象