Org.IdentityConnectors.Framework.Common.Objects.ObjectClassInfo.Is C# (CSharp) Метод

Is() публичный Метод

Determines if the 'name' matches this ObjectClassInfo.
public Is ( String name ) : bool
name String case-insensitive string representation of the ObjectClassInfo's /// type.
Результат bool
        public bool Is(String name)
        {
            return NameUtil.NamesEqual(_type, name);
        }