Obfuscar.PropertyKey.Matches C# (CSharp) Method

Matches() public method

public Matches ( MemberReference member ) : bool
member Mono.Cecil.MemberReference
return bool
        public virtual bool Matches(MemberReference member)
        {
            PropertyReference propRef = member as PropertyReference;
            if (propRef != null) {
                if (typeKey.Matches (propRef.DeclaringType))
                    return type == propRef.PropertyType.FullName && name == propRef.Name;
            }

            return false;
        }