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

GetMemberBinder() protected method

Initializes a new instance of the GetMemberBinder.
protected GetMemberBinder ( string name, bool ignoreCase ) : System.Dynamic.Utils
name string The name of the member to get.
ignoreCase bool true if the name should be matched ignoring case; false otherwise.
return System.Dynamic.Utils
        protected GetMemberBinder(string name, bool ignoreCase)
        {
            ContractUtils.RequiresNotNull(name, nameof(name));

            Name = name;
            IgnoreCase = ignoreCase;
        }