System.Dynamic.InvokeMemberBinder.InvokeMemberBinder C# (CSharp) Méthode

InvokeMemberBinder() protected méthode

Initializes a new instance of the InvokeMemberBinder.
protected InvokeMemberBinder ( string name, bool ignoreCase, CallInfo callInfo ) : System.Dynamic.Utils
name string The name of the member to invoke.
ignoreCase bool true if the name should be matched ignoring case; false otherwise.
callInfo CallInfo The signature of the arguments at the call site.
Résultat System.Dynamic.Utils
        protected InvokeMemberBinder(string name, bool ignoreCase, CallInfo callInfo)
        {
            ContractUtils.RequiresNotNull(name, nameof(name));
            ContractUtils.RequiresNotNull(callInfo, nameof(callInfo));

            Name = name;
            IgnoreCase = ignoreCase;
            CallInfo = callInfo;
        }