Org.IdentityConnectors.Framework.Common.Objects.ObjectClassUtil.CreateSpecialName C# (CSharp) Method

CreateSpecialName() public static method

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
return string
        public static string CreateSpecialName(string name)
        {
            return NameUtil.CreateSpecialName(name);
        }