Org.IdentityConnectors.Framework.Common.Objects.ObjectClassInfo.Is C# (CSharp) Method

Is() public method

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