/// <summary>
 /// Does this set contain a matching property?
 /// </summary>
 public bool ContainsMatching(PropertyDocumentation property)
 {
     TypeDocumentation mine;
     return TryGetMatchingType(property.DeclaringType, out mine) && mine.ContainsMatching(property);
 }
示例#2
0
        /// <summary>
        /// Does this set contain a matching property?
        /// </summary>
        public bool ContainsMatching(PropertyDocumentation property)
        {
            var xid = property.Xid;

            return(Properties.Any(x => x.Xid == xid));
        }
示例#3
0
 /// <summary>
 /// Does this set contain a matching property?
 /// </summary>
 public bool ContainsMatching(PropertyDocumentation property)
 {
     var xid = property.Xid;
     return Properties.Any(x => x.Xid == xid);
 }
示例#4
0
        /// <summary>
        /// Does this set contain a matching property?
        /// </summary>
        public bool ContainsMatching(PropertyDocumentation property)
        {
            TypeDocumentation mine;

            return(TryGetMatchingType(property.DeclaringType, out mine) && mine.ContainsMatching(property));
        }