Files
document-server-integration/web/documentserver-example/csharp-mvc/Helpers/Utils.cs
2020-03-03 11:40:00 +03:00

21 lines
609 B
C#

using System.Web;
namespace OnlineEditorsExampleMVC.Helpers
{
public static class Utils
{
public static string GetOrDefault(this HttpRequest request, string header, string def)
{
var value = request[header];
if (value != null) return value;
return def;
}
public static string GetOrDefault(this HttpCookieCollection cookies, string cookie, string def)
{
var cook = cookies[cookie];
if (cook != null && !string.IsNullOrEmpty(cook.Value)) return cook.Value;
return def;
}
}
}