Goedel.Mesh.MeshPortalRemote.GetService C# (CSharp) Méthode

GetService() public méthode

Return a MeshService object for the named portal service.
public GetService ( string Service, string Account ) : MeshService
Service string The service to get the service from.
Account string The account to get.
Résultat MeshService
        public override MeshService GetService(string Service, string Account) {
            var URI = JPCProvider.WellKnownToURI(Service, MeshService.WellKnown, 
                        MeshService.Discovery, false, true);

            var Session = new WebRemoteSession(URI, Service, Account);
            MeshServiceClient = new MeshServiceClient(Session);
            return MeshServiceClient;
            }
        }