Goedel.Mesh.MeshPortalDirect.GetService C# (CSharp) Method

GetService() public method

Return a MeshService object for the named portal service.
public GetService ( string Portal, string Account ) : MeshService
Portal string The portal to get the service from.
Account string The account to get.
return MeshService
        public override MeshService GetService(string Portal, string Account) {
            var Session = new DirectSession(null);
            MeshServiceClient = new PublicMeshService(MeshServiceHost, Session);
            return MeshServiceClient;
            }