次の方法で共有


WorkflowServiceAttributes.MaxItemsInObjectGraph プロパティ

定義

シリアル化されるオブジェクトで許可される項目の最大数を取得または設定します。

public:
 property int MaxItemsInObjectGraph { int get(); void set(int value); };
public int MaxItemsInObjectGraph { get; set; }
member this.MaxItemsInObjectGraph : int with get, set
Public Property MaxItemsInObjectGraph As Integer

プロパティ値

オブジェクトで許可される最大アイテム数。

次の例は、MaxItemsInObjectGraph プロパティのアクセス方法を示しています。

WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.MaxItemsInObjectGraph = 10;
Dim attributes As New WorkflowServiceAttributes()
attributes.MaxItemsInObjectGraph = 10

注釈

既定値は MaxValue です。

適用対象