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

SetMemberBinder() protected method

Initializes a new instance of the SetMemberBinder.
protected SetMemberBinder ( 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 SetMemberBinder(string name, bool ignoreCase)
        {
            ContractUtils.RequiresNotNull(name, nameof(name));

            Name = name;
            IgnoreCase = ignoreCase;
        }