CalDavSynchronizer.EntityCacheVersionConversion.Version0To1.DecodedString C# (CSharp) Метод

DecodedString() приватный статический Метод

private static DecodedString ( string value ) : string
value string
Результат string
    private static string DecodedString (string value)
    {
      string newValue;
      while ((newValue = Uri.UnescapeDataString (value)) != value)
        value = newValue;

      return newValue;
    }
  }