DeleteDomain() публичный Метод

public DeleteDomain ( GlymaSessionConfiguration configuration, System.Guid domainId ) : int
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
domainId System.Guid
Результат int
        public int DeleteDomain(string callingUrl, Guid domainId)
        {
            using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
            {
                using (WebAppSPGlymaSession glymaSession = new WebAppSPGlymaSession(callingUrl, domainId, null, SPGlymaRightFactory.Instance.RootMapCreateRight))
                {
                    GlymaSessionConfiguration configuration = glymaSession.ExportGlymaSession();

                    return(nodeServiceClient.DeleteDomain(configuration, domainId));
                }
            }
        }
        public int DeleteDomain(string callingUrl, Guid domainId)
        {
            using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
            {
                using (WebAppSPGlymaSession glymaSession = new WebAppSPGlymaSession(callingUrl, domainId, null, SPGlymaRightFactory.Instance.RootMapCreateRight))
                {
                    GlymaSessionConfiguration configuration = glymaSession.ExportGlymaSession();

                    return nodeServiceClient.DeleteDomain(configuration, domainId);
                }
            }
        }