GetAllMapTypes() public method

public GetAllMapTypes ( GlymaSessionConfiguration configuration ) : TypeResponse
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
return TransactionalNodeService.Common.TypeResponse
コード例 #1
0
 public TypeResponse GetAllMapTypes(string callingUrl)
 {
     using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
     {
         return nodeServiceClient.GetAllMapTypes(callingUrl);
     }
 }
コード例 #2
0
 public TypeResponse GetAllMapTypes(string callingUrl)
 {
     using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
     {
         return(nodeServiceClient.GetAllMapTypes(callingUrl));
     }
 }
コード例 #3
0
        public TypeResponse GetAllMapTypes(string callingUrl)
        {
            using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
            {
                using (WebAppSPGlymaSession glymaSession = new WebAppSPGlymaSession(callingUrl, null, null, SPGlymaRightFactory.Instance.BenignAccessRight))
                {
                    GlymaSessionConfiguration configuration = glymaSession.ExportGlymaSession();

                    return(nodeServiceClient.GetAllMapTypes(configuration));
                }
            }
        }
コード例 #4
0
        public TypeResponse GetAllMapTypes(string callingUrl)
        {
            using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
            {
                using (WebAppSPGlymaSession glymaSession = new WebAppSPGlymaSession(callingUrl, null, null, SPGlymaRightFactory.Instance.BenignAccessRight))
                {
                    GlymaSessionConfiguration configuration = glymaSession.ExportGlymaSession();

                    return nodeServiceClient.GetAllMapTypes(configuration);
                }
            }
        }