| 12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Web;
- using System.Web.Routing;
- namespace GreenTree.Nachtragsmanagement.Web.Framework.Mvc.Routes
- {
- public class GuidConstraint : IRouteConstraint
- {
- private readonly bool _allowEmpty;
- public GuidConstraint(bool allowEmpty)
- {
- this._allowEmpty = allowEmpty;
- }
- public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
- {
- if (values.ContainsKey(parameterName))
- {
- string stringValue = values[parameterName] != null ? values[parameterName].ToString() : null;
- if (!string.IsNullOrEmpty(stringValue))
- {
- Guid guidValue;
- return Guid.TryParse(stringValue, out guidValue) &&
- (_allowEmpty || guidValue != Guid.Empty);
- }
- }
- return false;
- }
- }
- }
|