BExIS.Ddm.Providers.LuceneProvider.Helpers.EncoderHelper.Encode C# (CSharp) Метод

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

public static Encode ( string value ) : string
value string
Результат string
        public static string Encode(string value)
        {
            string encodedValue = value;

            // has special characters
            if (SpecialCharactrersInValue(value))
            {
                encodedValue = ReplaceSpecialCharacters(value);
            }

            return encodedValue;
        }