Castle.Facilities.NHibernateIntegration.Util.FieldInfoCollection.ContainsKey C# (CSharp) Method

ContainsKey() public method

Determines whether the FieldInfoCollection contains the specified MemberInfo.Name value.
ContainsKey is similar to Contains but compares the specified key to the value of the MemberInfo.Name property of each FieldInfo element, rather than to the element itself.
public ContainsKey ( string key ) : bool
key string /// The value to locate /// in the . /// This argument may be a null reference. ///
return bool
		public bool ContainsKey(string key)
		{
			return (IndexOfKey(key) >= 0);
		}