Linguaggio

Request Costruttori

Definizione

Overload

Nome Descrizione
Request()

Costruttore predefinito

Request(Urn)

initalizzare con xpath

Request(Urn, String[])

inizializzare con l'elenco di campi xpath e requeste

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

inizializzare con l'elenco di campi xpath e requeste

Request()

Costruttore predefinito

public Request();
Public Sub New ()

Si applica a

Request(Urn)

initalizzare con 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)

Parametri

urn
Urn

xpath per cui eseguire una query

Si applica a

Request(Urn, String[])

inizializzare con l'elenco di campi xpath e 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())

Parametri

urn
Urn

xpath per cui eseguire una query

fields
String[]

elenco dei campi della richiesta

Si applica a

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

inizializzare con l'elenco di campi xpath e 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())

Parametri

urn
Urn

xpath per cui eseguire una query

fields
String[]

elenco dei campi della richiesta

orderBy
OrderBy[]

clausole order by

Si applica a