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

GetAllMapTypes() public method

public GetAllMapTypes ( GlymaSessionConfiguration configuration ) : TypeResponse
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
return TransactionalNodeService.Common.TypeResponse
        public TypeResponse GetAllMapTypes(GlymaSessionConfiguration configuration)
        {
            TypeResponse result = null;

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

            return result;
        }

Usage Example

 public TypeResponse GetAllMapTypes(string callingUrl)
 {
     using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
     {
         return nodeServiceClient.GetAllMapTypes(callingUrl);
     }
 }
All Usage Examples Of Glyma.NodeServiceApp.NodeServiceClient::GetAllMapTypes