Ejemplo n.º 1
0
 public FieldApi(bool isPublic, FieldMutability mutability, ApiTypeReference type, string name)
 {
     this.IsPublic   = isPublic;
     this.Mutability = mutability;
     this.Type       = type;
     this.Name       = name;
 }
Ejemplo n.º 2
0
 public EventApi(bool isPublic, bool isStatic, ApiTypeReference type, string name)
 {
     this.IsPublic = isPublic;
     this.IsStatic = isStatic;
     this.Type     = type;
     this.Name     = name;
 }
Ejemplo n.º 3
0
 public ParameterApi(ApiTypeReference type, string name, bool isOut, bool isOptional, object defaultValue)
 {
     this.Type         = type;
     this.Name         = name;
     this.IsOut        = isOut;
     this.IsOptional   = isOptional;
     this.DefaultValue = defaultValue;
 }