次の方法で共有


PutOptions コンストラクター

定義

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

オーバーロード

PutOptions()

put 操作のための PutOptions クラスの新しいインスタンスを、既定値を使用して初期化します。 これはパラメーターなしのコンストラクターです。

PutOptions(ManagementNamedValueCollection)

WMI (Windows Management Instrumentation) オブジェクトをコミットするための PutOptions クラスの新しいインスタンスを、指定したプロバイダー固有のコンテキストを使用して初期化します。

PutOptions(ManagementNamedValueCollection, TimeSpan, Boolean, PutType)

WMI オブジェクトをコミットするための PutOptions クラスの新しいインスタンスを、指定したオプション値を使用して初期化します。

PutOptions()

ソース:
ManagementOptions.cs
ソース:
ManagementOptions.cs
ソース:
ManagementOptions.cs

put 操作のための PutOptions クラスの新しいインスタンスを、既定値を使用して初期化します。 これはパラメーターなしのコンストラクターです。

public:
 PutOptions();
public PutOptions ();
Public Sub New ()

注釈

.NET Framework のセキュリティ

直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「 部分信頼コードからのライブラリの使用」を参照してください。

適用対象

PutOptions(ManagementNamedValueCollection)

ソース:
ManagementOptions.cs
ソース:
ManagementOptions.cs
ソース:
ManagementOptions.cs

WMI (Windows Management Instrumentation) オブジェクトをコミットするための PutOptions クラスの新しいインスタンスを、指定したプロバイダー固有のコンテキストを使用して初期化します。

public:
 PutOptions(System::Management::ManagementNamedValueCollection ^ context);
public PutOptions (System.Management.ManagementNamedValueCollection context);
new System.Management.PutOptions : System.Management.ManagementNamedValueCollection -> System.Management.PutOptions
Public Sub New (context As ManagementNamedValueCollection)

パラメーター

context
ManagementNamedValueCollection

プロバイダーに渡される、プロバイダー固有の名前付き値がペアになったコンテキスト オブジェクト。

注釈

.NET Framework のセキュリティ

直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「 部分信頼コードからのライブラリの使用」を参照してください。

適用対象

PutOptions(ManagementNamedValueCollection, TimeSpan, Boolean, PutType)

ソース:
ManagementOptions.cs
ソース:
ManagementOptions.cs
ソース:
ManagementOptions.cs

WMI オブジェクトをコミットするための PutOptions クラスの新しいインスタンスを、指定したオプション値を使用して初期化します。

public:
 PutOptions(System::Management::ManagementNamedValueCollection ^ context, TimeSpan timeout, bool useAmendedQualifiers, System::Management::PutType putType);
public PutOptions (System.Management.ManagementNamedValueCollection context, TimeSpan timeout, bool useAmendedQualifiers, System.Management.PutType putType);
new System.Management.PutOptions : System.Management.ManagementNamedValueCollection * TimeSpan * bool * System.Management.PutType -> System.Management.PutOptions
Public Sub New (context As ManagementNamedValueCollection, timeout As TimeSpan, useAmendedQualifiers As Boolean, putType As PutType)

パラメーター

context
ManagementNamedValueCollection

プロバイダーを通じて渡される、プロバイダー固有の名前と値のペアを表すオブジェクト。

timeout
TimeSpan

操作がタイムアウトするまでに実行される時間の長さ。既定値は TimeSpan.MaxValue です

useAmendedQualifiers
Boolean

返されたオブジェクトが修正された (ロケール対応) 修飾子を格納する場合は true。それ以外の場合は false

putType
PutType

実行するコミットの種類 (更新または作成)。

注釈

.NET Framework のセキュリティ

直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「 部分信頼コードからのライブラリの使用」を参照してください。

適用対象