System.Dynamic.InvokeBinder.InvokeBinder C# (CSharp) Method

InvokeBinder() protected method

Initializes a new instance of the InvokeBinder.
protected InvokeBinder ( CallInfo callInfo ) : System.Dynamic.Utils
callInfo CallInfo The signature of the arguments at the call site.
return System.Dynamic.Utils
        protected InvokeBinder(CallInfo callInfo)
        {
            ContractUtils.RequiresNotNull(callInfo, nameof(callInfo));
            CallInfo = callInfo;
        }