//--- Constructors ---
 public DekiScriptInvocationTargetDescriptor(DreamAccess access, bool isProperty, bool isIdempotent, string name, DekiScriptParameter[] parameters, DekiScriptType returnType, string description, string transform, IDekiScriptInvocationTarget target) {
     this.Access = access;
     this.IsProperty = isProperty;
     this.IsIdempotent = isIdempotent;
     this.Name = name;
     this.Parameters = parameters;
     this.ReturnType = returnType;
     this.Description = description;
     this.Transform = transform;
     this.Target = target;
 }
コード例 #2
0
 //--- Constructors ---
 public DekiScriptInvocationTargetDescriptor(DreamAccess access, bool isProperty, bool isIdempotent, string name, DekiScriptParameter[] parameters, DekiScriptType returnType, string description, string transform, IDekiScriptInvocationTarget target)
 {
     this.Access       = access;
     this.IsProperty   = isProperty;
     this.IsIdempotent = isIdempotent;
     this.Name         = name;
     this.Parameters   = parameters;
     this.ReturnType   = returnType;
     this.Description  = description;
     this.Transform    = transform;
     this.Target       = target;
 }