Partager via


ApplicationRegistry.GetLobSystemInstances, méthode (Microsoft.Office.Server.ApplicationRegistry.MetadataModel)

Gets all the LobSystemInstance objects registered in the metadata repository.

Espace de noms : Microsoft.Office.Server.ApplicationRegistry.MetadataModel
Assembly : Microsoft.SharePoint.Portal (dans microsoft.sharepoint.portal.dll)

Syntaxe

'Déclaration
Public Shared Function GetLobSystemInstances As NamedLobSystemInstanceDictionary
'Utilisation
Dim returnValue As NamedLobSystemInstanceDictionary

returnValue = ApplicationRegistry.GetLobSystemInstances
public static NamedLobSystemInstanceDictionary GetLobSystemInstances ()

Valeur de retour

A NamedLobSystemInstanceDictionary object containing the LobSystemInstance objects.

Exemple

The following code example shows how to display the names of the systems registered in the Business Data Catalog. Specifying the Shared Services Provider (SSP) is one of the first steps in getting a console application to work with the Business Data Catalog.

After you specify the Shared Services Provider, you can use the ApplicationRegistry object to get the LobSystemInstance objects registered with the Business Data Catalog, as shown in the following example.

Prerequisites

  • Make sure a Shared Services Provider has already been created.

  • Replace the constant value EnterYourSSPNameHere in the code with the name of your Shared Resource Provider.

Project References

Add the following Project References in your console application code project before running this sample:

  • Microsoft.SharePoint

  • Microsoft.SharePoint.Portal

  • Microsoft.Office.Server

using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using Microsoft.Office.Server.ApplicationRegistry.MetadataModel;
using Microsoft.Office.Server.ApplicationRegistry.Runtime;
using Microsoft.Office.Server.ApplicationRegistry.SystemSpecific;
using Microsoft.Office.Server.ApplicationRegistry.Infrastructure;
using WSSAdmin = Microsoft.SharePoint.Administration;
using OSSAdmin = Microsoft.Office.Server.Administration;

namespace Microsoft.SDK.SharePointServer.Samples
{
    class GetStartedAndDisplaySystems
    {
        const string yourSSPName = "EnterYourSSPNameHere";

        static void Main(string[] args)
        {
            SetupBDC();
            DisplayLOBSystemsinBDC();
            Console.WriteLine("Press any key to exit...");
            Console.Read();
        }
        static void SetupBDC()
        {
            SqlSessionProvider.Instance().SetSharedResourceProviderToUse(yourSSPName);
        }
        static void DisplayLOBSystemsinBDC()
        {
            NamedLobSystemInstanceDictionary sysInstances = ApplicationRegistry.GetLobSystemInstances();
            Console.WriteLine("Listing system instances...");
            foreach (String name in sysInstances.Keys)
            {
                Console.WriteLine(name);
            }
        }
    }

}

Voir aussi

Référence

ApplicationRegistry, classe
Membres ApplicationRegistry
Microsoft.Office.Server.ApplicationRegistry.MetadataModel, espace de noms