constructor-info.ts 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET 通用权限开发平台
  5. * 让 .NET 开发更简单、更通用、更流行。整合最新技术,模块插件式开发,前后端分离,开箱即用。<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. *
  9. *
  10. * NOTE: This class is auto generated by the swagger code generator program.
  11. * https://github.com/swagger-api/swagger-codegen.git
  12. * Do not edit the class manually.
  13. */
  14. import { CallingConventions } from './calling-conventions';
  15. import { CustomAttributeData } from './custom-attribute-data';
  16. import { MemberTypes } from './member-types';
  17. import { MethodAttributes } from './method-attributes';
  18. import { MethodImplAttributes } from './method-impl-attributes';
  19. import { Module } from './module';
  20. import { RuntimeMethodHandle } from './runtime-method-handle';
  21. import { Type } from './type';
  22. /**
  23. *
  24. *
  25. * @export
  26. * @interface ConstructorInfo
  27. */
  28. export interface ConstructorInfo {
  29. /**
  30. * @type {string}
  31. * @memberof ConstructorInfo
  32. */
  33. name?: string | null;
  34. /**
  35. * @type {Type}
  36. * @memberof ConstructorInfo
  37. */
  38. declaringType?: Type;
  39. /**
  40. * @type {Type}
  41. * @memberof ConstructorInfo
  42. */
  43. reflectedType?: Type;
  44. /**
  45. * @type {Module}
  46. * @memberof ConstructorInfo
  47. */
  48. module?: Module;
  49. /**
  50. * @type {Array<CustomAttributeData>}
  51. * @memberof ConstructorInfo
  52. */
  53. customAttributes?: Array<CustomAttributeData> | null;
  54. /**
  55. * @type {boolean}
  56. * @memberof ConstructorInfo
  57. */
  58. isCollectible?: boolean;
  59. /**
  60. * @type {number}
  61. * @memberof ConstructorInfo
  62. */
  63. metadataToken?: number;
  64. /**
  65. * @type {MethodAttributes}
  66. * @memberof ConstructorInfo
  67. */
  68. attributes?: MethodAttributes;
  69. /**
  70. * @type {MethodImplAttributes}
  71. * @memberof ConstructorInfo
  72. */
  73. methodImplementationFlags?: MethodImplAttributes;
  74. /**
  75. * @type {CallingConventions}
  76. * @memberof ConstructorInfo
  77. */
  78. callingConvention?: CallingConventions;
  79. /**
  80. * @type {boolean}
  81. * @memberof ConstructorInfo
  82. */
  83. isAbstract?: boolean;
  84. /**
  85. * @type {boolean}
  86. * @memberof ConstructorInfo
  87. */
  88. isConstructor?: boolean;
  89. /**
  90. * @type {boolean}
  91. * @memberof ConstructorInfo
  92. */
  93. isFinal?: boolean;
  94. /**
  95. * @type {boolean}
  96. * @memberof ConstructorInfo
  97. */
  98. isHideBySig?: boolean;
  99. /**
  100. * @type {boolean}
  101. * @memberof ConstructorInfo
  102. */
  103. isSpecialName?: boolean;
  104. /**
  105. * @type {boolean}
  106. * @memberof ConstructorInfo
  107. */
  108. isStatic?: boolean;
  109. /**
  110. * @type {boolean}
  111. * @memberof ConstructorInfo
  112. */
  113. isVirtual?: boolean;
  114. /**
  115. * @type {boolean}
  116. * @memberof ConstructorInfo
  117. */
  118. isAssembly?: boolean;
  119. /**
  120. * @type {boolean}
  121. * @memberof ConstructorInfo
  122. */
  123. isFamily?: boolean;
  124. /**
  125. * @type {boolean}
  126. * @memberof ConstructorInfo
  127. */
  128. isFamilyAndAssembly?: boolean;
  129. /**
  130. * @type {boolean}
  131. * @memberof ConstructorInfo
  132. */
  133. isFamilyOrAssembly?: boolean;
  134. /**
  135. * @type {boolean}
  136. * @memberof ConstructorInfo
  137. */
  138. isPrivate?: boolean;
  139. /**
  140. * @type {boolean}
  141. * @memberof ConstructorInfo
  142. */
  143. isPublic?: boolean;
  144. /**
  145. * @type {boolean}
  146. * @memberof ConstructorInfo
  147. */
  148. isConstructedGenericMethod?: boolean;
  149. /**
  150. * @type {boolean}
  151. * @memberof ConstructorInfo
  152. */
  153. isGenericMethod?: boolean;
  154. /**
  155. * @type {boolean}
  156. * @memberof ConstructorInfo
  157. */
  158. isGenericMethodDefinition?: boolean;
  159. /**
  160. * @type {boolean}
  161. * @memberof ConstructorInfo
  162. */
  163. containsGenericParameters?: boolean;
  164. /**
  165. * @type {RuntimeMethodHandle}
  166. * @memberof ConstructorInfo
  167. */
  168. methodHandle?: RuntimeMethodHandle;
  169. /**
  170. * @type {boolean}
  171. * @memberof ConstructorInfo
  172. */
  173. isSecurityCritical?: boolean;
  174. /**
  175. * @type {boolean}
  176. * @memberof ConstructorInfo
  177. */
  178. isSecuritySafeCritical?: boolean;
  179. /**
  180. * @type {boolean}
  181. * @memberof ConstructorInfo
  182. */
  183. isSecurityTransparent?: boolean;
  184. /**
  185. * @type {MemberTypes}
  186. * @memberof ConstructorInfo
  187. */
  188. memberType?: MemberTypes;
  189. }