उपरोक्त किसी भी उदाहरण ने मेरी व्यक्तिगत जरूरतों के लिए काम नहीं किया। नीचे मैं क्या कर रहा हूँ नीचे है।
public class ContainsConstraint : IHttpRouteConstraint
{
public string[] array { get; set; }
public bool match { get; set; }
/// <summary>
/// Check if param contains any of values listed in array.
/// </summary>
/// <param name="param">The param to test.</param>
/// <param name="array">The items to compare against.</param>
/// <param name="match">Whether we are matching or NOT matching.</param>
public ContainsConstraint(string[] array, bool match)
{
this.array = array;
this.match = match;
}
public bool Match(System.Net.Http.HttpRequestMessage request, IHttpRoute route, string parameterName, IDictionary<string, object> values, HttpRouteDirection routeDirection)
{
if (values == null) // shouldn't ever hit this.
return true;
if (!values.ContainsKey(parameterName)) // make sure the parameter is there.
return true;
if (string.IsNullOrEmpty(values[parameterName].ToString())) // if the param key is empty in this case "action" add the method so it doesn't hit other methods like "GetStatus"
values[parameterName] = request.Method.ToString();
bool contains = array.Contains(values[parameterName]); // this is an extension but all we are doing here is check if string array contains value you can create exten like this or use LINQ or whatever u like.
if (contains == match) // checking if we want it to match or we don't want it to match
return true;
return false;
}
अपने मार्ग उपयोग में उपरोक्त उपयोग करने के लिए:
config.Routes.MapHttpRoute("Default", "{controller}/{action}/{id}", new { action = RouteParameter.Optional, id = RouteParameter.Optional}, new { action = new ContainsConstraint( new string[] { "GET", "PUT", "DELETE", "POST" }, true) });
क्या होता है विधि में बाधक किस्म के नकली होते हैं जिससे यह मार्ग केवल डिफ़ॉल्ट GET, POST, PUT और DELETE विधियों से मेल खाएगा। "सच" में कहा गया है कि हम सरणी में मौजूद वस्तुओं के मिलान के लिए जाँच करना चाहते हैं। यदि यह गलत था, तो आप कह रहे हैं कि आप उन लोगों को बाहर कर दें। फिर आप इस डिफ़ॉल्ट विधि से ऊपर के मार्गों का उपयोग कर सकते हैं जैसे:
config.Routes.MapHttpRoute("GetStatus", "{controller}/status/{status}", new { action = "GetStatus" });
इसके बाद के संस्करण में यह अनिवार्य रूप से निम्नलिखित URL की तलाश में है => http://www.domain.com/Account/Status/Active
या ऐसा कुछ।
ऊपर से मुझे यकीन नहीं है कि मैं बहुत पागल हो जाऊंगा। दिन के अंत में यह प्रति संसाधन होना चाहिए। लेकिन मुझे विभिन्न कारणों से मैत्रीपूर्ण यूआरएल को मैप करने की आवश्यकता है। मुझे बहुत कुछ महसूस हो रहा है क्योंकि वेब आपी विकसित होती है, इसमें किसी प्रकार का प्रावधान होगा। अगर समय मैं एक अधिक स्थायी समाधान और पोस्ट का निर्माण करूँगा।