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

DeleteMemberBinder() protected method

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

            Name = name;
            IgnoreCase = ignoreCase;
        }