zoukankan      html  css  js  c++  java
  • arcengine 获得lic 信息

     private void button1_Click(object sender, EventArgs e)
            {

                ESRI.ArcGIS.esriSystem.IAoInitialize aoInitialize = new ESRI.ArcGIS.esriSystem.AoInitializeClass();
                ESRI.ArcGIS.esriSystem.ILicenseInformation licenseInformation = (ESRI.ArcGIS.esriSystem.ILicenseInformation)aoInitialize;

                System.String string_Licenses = null;
                try
                {

                    ESRI.ArcGIS.esriSystem.esriLicenseProductCode licenseProductCode = aoInitialize.InitializedProduct();
                    System.String string_LicenseProductName = licenseInformation.GetLicenseProductName(licenseProductCode);

                    string_Licenses = "This application is initialized with the following product license:" + System.Environment.NewLine + string_LicenseProductName + System.Environment.NewLine + "This application has the following extension licenses checked out:";

                    ESRI.ArcGIS.esriSystem.ILicenseInfoEnum licenseInfoEnum = licenseInformation.GetProductExtensions(licenseProductCode);

                    licenseInfoEnum.Reset();

                    ESRI.ArcGIS.esriSystem.esriLicenseExtensionCode licenseExtensionCode = licenseInfoEnum.Next();

                    while (!(System.Convert.ToInt32(licenseExtensionCode) == -1))
                    {

                        if (aoInitialize.IsExtensionCheckedOut(licenseExtensionCode) == true)
                        {
                            System.String string_LicenseExtensionName = licenseInformation.GetLicenseExtensionName(licenseExtensionCode);
                            string_Licenses = string_Licenses + System.Environment.NewLine + string_LicenseExtensionName;
                        }

                        licenseExtensionCode = licenseInfoEnum.Next();

                    }
                    System.Windows.Forms.MessageBox.Show(string_Licenses);

                }
                catch (System.Exception ex)
                {
                    System.Windows.Forms.MessageBox.Show(ex.ToString());

                }

            }

  • 相关阅读:
    opengl 4.5离线文档下载
    c++下利用URLOpenStream下载
    实时阴影渲染(三):软阴影深度校正
    实时阴影渲染(二):软阴影
    实时阴影渲染(一):PSSM平行分割阴影图
    Ogre材质shader模版
    本地springboot项目连接本地mysql报错。com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
    Caused by: java.lang.IllegalStateException: AnnotationAwareAspectJAutoProxyCreator is only available on Java 1.5 and higher
    关于布隆过滤器
    CSS系列------选择器和选择器的优先级
  • 原文地址:https://www.cnblogs.com/gisoracle/p/1913216.html
Copyright © 2011-2022 走看看