Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves the specified data. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public Shared Function GetData ( _
connectionInfo As Object, _
urn As Urn, _
requestedFields As String(), _
orderBy As OrderBy() _
) As EnumResult
'Usage
Dim connectionInfo As Object
Dim urn As Urn
Dim requestedFields As String()
Dim orderBy As OrderBy()
Dim returnValue As EnumResult
returnValue = Enumerator.GetData(connectionInfo, _
urn, requestedFields, orderBy)
public static EnumResult GetData(
Object connectionInfo,
Urn urn,
string[] requestedFields,
OrderBy[] orderBy
)
public:
static EnumResult^ GetData(
Object^ connectionInfo,
Urn^ urn,
array<String^>^ requestedFields,
array<OrderBy^>^ orderBy
)
static member GetData :
connectionInfo:Object *
urn:Urn *
requestedFields:string[] *
orderBy:OrderBy[] -> EnumResult
public static function GetData(
connectionInfo : Object,
urn : Urn,
requestedFields : String[],
orderBy : OrderBy[]
) : EnumResult
Parameters
- connectionInfo
Type: System.Object
An object that represents the connection.
- urn
Type: Microsoft.SqlServer.Management.Sdk.Sfc.Urn
The xpath expression.
- requestedFields
Type: array<System.String[]
The list of requested fields.
- orderBy
Type: array<Microsoft.SqlServer.Management.Sdk.Sfc.OrderBy[]
The order by a particular field in the specified order.
Return Value
Type: Microsoft.SqlServer.Management.Sdk.Sfc.EnumResult
The result of the requested field in no particular order.