Catel.Data.CatelTypeInfo.IsPropertyRegistered C# (CSharp) 메소드

IsPropertyRegistered() 공개 메소드

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

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