Glyma.NodeServiceApp.NodeServiceClient.QueryDomains C# (CSharp) Method

QueryDomains() public method

public QueryDomains ( GlymaSessionConfiguration configuration ) : QueryResponse>.Dictionary
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
return QueryResponse>.Dictionary
        public Dictionary<Guid, QueryResponse> QueryDomains(GlymaSessionConfiguration configuration)
        {
            Dictionary<Guid, QueryResponse> result = null;

            // run the call against the application proxy
            NodeServiceApplicationProxy.Invoke(_serviceContext,
                proxy => result = proxy.QueryDomains(configuration));

            return result;
        }

Usage Example

Example #1
0
 public Dictionary <Guid, QueryResponse> QueryDomains(string callingUrl)
 {
     using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
     {
         return(nodeServiceClient.QueryDomains(callingUrl));
     }
 }
All Usage Examples Of Glyma.NodeServiceApp.NodeServiceClient::QueryDomains