Request コンストラクター

定義

オーバーロード

名前 説明
Request()

デフォルト構造体

Request(Urn)

xpath を使用して初期化する

Request(Urn, String[])

xpath および requeste フィールド リストを使用して初期化する

Request(Urn, String[], OrderBy[])

xpath および requeste フィールド リストを使用して初期化する

Request()

デフォルト構造体

public Request();
Public Sub New ()

適用対象

Request(Urn)

xpath を使用して初期化する

public Request(Microsoft.SqlServer.Management.Sdk.Sfc.Urn urn);
new Microsoft.SqlServer.Management.Sdk.Sfc.Request : Microsoft.SqlServer.Management.Sdk.Sfc.Urn -> Microsoft.SqlServer.Management.Sdk.Sfc.Request
Public Sub New (urn As Urn)

パラメーター

urn
Urn

クエリ対象の xpath

適用対象

Request(Urn, String[])

xpath および requeste フィールド リストを使用して初期化する

public Request(Microsoft.SqlServer.Management.Sdk.Sfc.Urn urn, string[] fields);
new Microsoft.SqlServer.Management.Sdk.Sfc.Request : Microsoft.SqlServer.Management.Sdk.Sfc.Urn * string[] -> Microsoft.SqlServer.Management.Sdk.Sfc.Request
Public Sub New (urn As Urn, fields As String())

パラメーター

urn
Urn

クエリ対象の xpath

fields
String[]

requeste fields list

適用対象

Request(Urn, String[], OrderBy[])

xpath および requeste フィールド リストを使用して初期化する

public Request(Microsoft.SqlServer.Management.Sdk.Sfc.Urn urn, string[] fields, Microsoft.SqlServer.Management.Sdk.Sfc.OrderBy[] orderBy);
new Microsoft.SqlServer.Management.Sdk.Sfc.Request : Microsoft.SqlServer.Management.Sdk.Sfc.Urn * string[] * Microsoft.SqlServer.Management.Sdk.Sfc.OrderBy[] -> Microsoft.SqlServer.Management.Sdk.Sfc.Request
Public Sub New (urn As Urn, fields As String(), orderBy As OrderBy())

パラメーター

urn
Urn

クエリ対象の xpath

fields
String[]

requeste fields list

orderBy
OrderBy[]

order by 句

適用対象