Ejemplo n.º 1
0
 public CSharpSetIndexBinder(CSharpBinderFlags flags, Type callingContext, IEnumerable <CSharpArgumentInfo> argumentInfo)
     : base(CSharpArgumentInfo.CreateCallInfo(argumentInfo, 2))
 {
     this.flags          = flags;
     this.callingContext = callingContext;
     this.argumentInfo   = argumentInfo.ToReadOnly();
 }
Ejemplo n.º 2
0
 public CSharpInvokeMemberBinder(CSharpBinderFlags flags, string name, Type callingContext, IEnumerable <Type> typeArguments, IEnumerable <CSharpArgumentInfo> argumentInfo)
     : base(name, false, CSharpArgumentInfo.CreateCallInfo(argumentInfo, 1))
 {
     this.flags          = flags;
     this.callingContext = callingContext;
     this.argumentInfo   = argumentInfo.ToReadOnly();
     this.typeArguments  = typeArguments.ToReadOnly();
 }
Ejemplo n.º 3
0
 public CSharpGetIndexBinder(Type callingContext, IEnumerable <CSharpArgumentInfo> argumentInfo)
     : base(CSharpArgumentInfo.CreateCallInfo(argumentInfo, 1))
 {
     this.callingContext = callingContext;
     this.argumentInfo   = argumentInfo.ToReadOnly();
 }