Disco.Services.Interop.ActiveDirectory.ADHelpers.EscapeLdapQuery C# (CSharp) Method

EscapeLdapQuery() static private method

static private EscapeLdapQuery ( string query ) : string
query string
return string
        internal static string EscapeLdapQuery(string query)
        {
            return query.Replace("*", "\\2a").Replace("(", "\\28").Replace(")", "\\29").Replace("\\", "\\5c").Replace("NUL", "\\00").Replace("/", "\\2f");
        }