Difference between revisions of "CALicense::ErrorText/zh"

(Created page with "CAEngine对象具有相同名称的属性(使用一组和这一致的错误代码)。一旦你获得一个CAEngine实例,你将需要检...")
(Created page with "== 数据类型 ==")
Line 16: Line 16:
 
[[CAEngine/zh|CAEngine]]对象具有相同名称的属性(使用一组和这一致的错误代码)。一旦你获得一个[[CAEngine/zh|CAEngine]]实例,你将需要检查其[[CAEngine::ErrorText/zh|ErrorText]]属性——不是[[CALicense/zh|CALicense]]的ErrorText属性。此[[CALicense::ErrorText/zh|CALicense::ErrorText]]仅用来捕捉[[CAEngine/zh|CAEngine]]实例化过程中的错误。
 
[[CAEngine/zh|CAEngine]]对象具有相同名称的属性(使用一组和这一致的错误代码)。一旦你获得一个[[CAEngine/zh|CAEngine]]实例,你将需要检查其[[CAEngine::ErrorText/zh|ErrorText]]属性——不是[[CALicense/zh|CALicense]]的ErrorText属性。此[[CALicense::ErrorText/zh|CALicense::ErrorText]]仅用来捕捉[[CAEngine/zh|CAEngine]]实例化过程中的错误。
  
== Data Type ==
+
== 数据类型 ==
  
 
string
 
string

Revision as of 07:56, 23 October 2015

ADE User Guide > ADE Server Class Reference > CALicense

Other languages:
English • ‎中文

property string CALicense::ErrorText

来自前面CALicense方法调用失败原因的的状态代码。尤其是,在调用NewCAEngine方法后,这提供了关于失败原因的信息。

错误代码能通过使用ErrorCode属性获取。一些代码可能会遇到(不全面):

71 – “使用的CAEngine实例数量已达到允许的上限”
72 – “无效注册码”
73 – “过期注册码”
74 – “到期注册码”
75 – “没有安装ADE注册码”
76 – “非应用程序注册码” (来自SetApplicationLicenseCode方法)

CAEngine对象具有相同名称的属性(使用一组和这一致的错误代码)。一旦你获得一个CAEngine实例,你将需要检查其ErrorText属性——不是CALicense的ErrorText属性。此CALicense::ErrorText仅用来捕捉CAEngine实例化过程中的错误。

数据类型

string

Access

read

Example usage

C#

CALicense lic = new ADE.CALicense();
CAEngine ade = lic.NewCAEngine();
if ( ade == null) {
   MessageBox.Show( "Error " + lic.ErrorCode + ": " + lic.ErrorText, "ADE could not be started", MessageBoxButtons.OK );
   return
}
...

See Also

Comments


You are not allowed to post comments.