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 collection of external systems 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 GetLobSystems ( _
wildcardedName As String _
) As LobSystemCollection
'Usage
Dim instance As AdministrationMetadataCatalog
Dim wildcardedName As String
Dim returnValue As LobSystemCollection
returnValue = instance.GetLobSystems(wildcardedName)
public LobSystemCollection GetLobSystems(
string wildcardedName
)
Parameters
wildcardedName
Type: System.StringThe name that uses the wild card.
Return Value
Type: Microsoft.SharePoint.BusinessData.Administration.Client.LobSystemCollection
The specified collection of external system objects.
Remarks
BDC uses '*' as the wildcard character and the '\' as the escape character. For example, to obtain all external systems 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