Catel.Data.CatelTypeInfo.IsPropertyRegistered C# (CSharp) Method

IsPropertyRegistered() public method

Returns whether a specific property is registered.
The is null or whitespace.
public IsPropertyRegistered ( string name ) : bool
name string The name of the property.
return bool
        public bool IsPropertyRegistered(string name)
        {
            Argument.IsNotNullOrWhitespace("name", name);

            lock (_lockObject)
            {
                return _catelProperties.ContainsKey(name);
            }
        }