C# Класс Org.IdentityConnectors.Framework.Common.Objects.ObjectClassUtil

Показать файл Открыть проект

Открытые методы

Метод Описание
CreateSpecialName ( string name ) : string

Create a special name from the specified name. Add the __ string as both prefix and suffix. This indicates that a name identifies a special object class such as a predefined one.

IsSpecial ( ObjectClass oclass ) : bool

Determines if this object class is a special object class. Special object classes include the predefined ones, such as ObjectClass.ACCOUNT and ObjectClass.GROUP.

IsSpecialName ( String name ) : bool

Determines whether the specified object class name is special in the sense of ObjectClassUtil.CreateSpecialName.

NamesEqual ( string name1, string name2 ) : bool

Compares two object class names for equality.

Описание методов

CreateSpecialName() публичный статический Метод

Create a special name from the specified name. Add the __ string as both prefix and suffix. This indicates that a name identifies a special object class such as a predefined one.
public static CreateSpecialName ( string name ) : string
name string object class name to make special
Результат string

IsSpecial() публичный статический Метод

Determines if this object class is a special object class. Special object classes include the predefined ones, such as ObjectClass.ACCOUNT and ObjectClass.GROUP.
if the object class parameter is null
public static IsSpecial ( ObjectClass oclass ) : bool
oclass ObjectClass the object class to test
Результат bool

IsSpecialName() публичный статический Метод

Determines whether the specified object class name is special in the sense of ObjectClassUtil.CreateSpecialName.
public static IsSpecialName ( String name ) : bool
name String the name of the object class to test
Результат bool

NamesEqual() публичный статический Метод

Compares two object class names for equality.
public static NamesEqual ( string name1, string name2 ) : bool
name1 string the first object class name
name2 string the second object class name
Результат bool