C# 클래스 Org.IdentityConnectors.Framework.Common.Objects.ObjectClassUtil

파일 보기 프로젝트 열기: Tirasa/ConnId

공개 메소드들

메소드 설명
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