コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SetIndexBinder" />.
 /// </summary>
 /// <param name="callInfo">The signature of the arguments at the call site.</param>
 protected SetIndexBinder(CallInfo callInfo)
 {
     ContractUtils.RequiresNotNull(callInfo, "callInfo");
     _callInfo = callInfo;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new intsance of the <see cref="CreateInstanceBinder" />.
 /// </summary>
 /// <param name="callInfo">The signature of the arguments at the call site.</param>
 protected CreateInstanceBinder(CallInfo callInfo)
 {
     ContractUtils.RequiresNotNull(callInfo, "callInfo");
     _callInfo = callInfo;
 }