DataSchemaModel.GetCustomData Method (String, String)
Gets a list of custom data by using the provided category and type name.
Namespace: Microsoft.Data.Schema.SchemaModel
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Public Function GetCustomData ( _
category As String, _
type As String _
) As IList(Of CustomSchemaData)
public IList<CustomSchemaData> GetCustomData(
string category,
string type
)
public:
IList<CustomSchemaData^>^ GetCustomData(
String^ category,
String^ type
)
member GetCustomData :
category:string *
type:string -> IList<CustomSchemaData>
public function GetCustomData(
category : String,
type : String
) : IList<CustomSchemaData>
Parameters
- category
Type: System.String
A string that contains the category.
- type
Type: System.String
A string that contains the type name.
Return Value
Type: System.Collections.Generic.IList<CustomSchemaData>
An IList<T> of type CustomSchemaData.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.