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.
Gets the models whose names match the specified wildcard name.
Namespace: Microsoft.SharePoint.BusinessData.Administration.Client
Assembly: Microsoft.SharePoint.BusinessData.Administration.Client (in Microsoft.SharePoint.BusinessData.Administration.Client.dll)
Syntax
'Declaration
Public Function GetModels ( _
wildcardedName As String _
) As ModelCollection
'Usage
Dim instance As AdministrationMetadataCatalog
Dim wildcardedName As String
Dim returnValue As ModelCollection
returnValue = instance.GetModels(wildcardedName)
public ModelCollection GetModels(
string wildcardedName
)
Parameters
wildcardedName
Type: System.StringThe name that uses the wild card.
Return Value
Type: Microsoft.SharePoint.BusinessData.Administration.Client.ModelCollection
The specified model collection.
Remarks
BDC uses '*' as the wildcard character and the '\' as the escape character. For example, to obtain all models which have names starting with "C", and ending with "s*12", this method should be called with "C*s\*12". This will return both "Customers*12" and "Cs*12", but not "CratesOf12" or "Cs\*12".
See Also
Reference
AdministrationMetadataCatalog Class
AdministrationMetadataCatalog Members
Microsoft.SharePoint.BusinessData.Administration.Client Namespace