take param from routing in .net API











up vote
0
down vote

favorite












i have web api project with this routes:



 config.Routes.MapHttpRoute(
name: "Default_Api",
routeTemplate: "api/v{version:apiVersion}/{lang}/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);


then i need get {lang} param into Application_BeginRequest:



 var httpContext = HttpContext.Current;
RouteData currentRouteData = RouteTable.Routes.GetRouteData(new HttpContextWrapper(httpContext));
string lang = currentRouteData.Values["lang"] as string;


but always return null
how i can do this?










share|improve this question


























    up vote
    0
    down vote

    favorite












    i have web api project with this routes:



     config.Routes.MapHttpRoute(
    name: "Default_Api",
    routeTemplate: "api/v{version:apiVersion}/{lang}/{controller}/{id}",
    defaults: new { id = RouteParameter.Optional }
    );


    then i need get {lang} param into Application_BeginRequest:



     var httpContext = HttpContext.Current;
    RouteData currentRouteData = RouteTable.Routes.GetRouteData(new HttpContextWrapper(httpContext));
    string lang = currentRouteData.Values["lang"] as string;


    but always return null
    how i can do this?










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      i have web api project with this routes:



       config.Routes.MapHttpRoute(
      name: "Default_Api",
      routeTemplate: "api/v{version:apiVersion}/{lang}/{controller}/{id}",
      defaults: new { id = RouteParameter.Optional }
      );


      then i need get {lang} param into Application_BeginRequest:



       var httpContext = HttpContext.Current;
      RouteData currentRouteData = RouteTable.Routes.GetRouteData(new HttpContextWrapper(httpContext));
      string lang = currentRouteData.Values["lang"] as string;


      but always return null
      how i can do this?










      share|improve this question













      i have web api project with this routes:



       config.Routes.MapHttpRoute(
      name: "Default_Api",
      routeTemplate: "api/v{version:apiVersion}/{lang}/{controller}/{id}",
      defaults: new { id = RouteParameter.Optional }
      );


      then i need get {lang} param into Application_BeginRequest:



       var httpContext = HttpContext.Current;
      RouteData currentRouteData = RouteTable.Routes.GetRouteData(new HttpContextWrapper(httpContext));
      string lang = currentRouteData.Values["lang"] as string;


      but always return null
      how i can do this?







      asp.net .net asp.net-apicontroller






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 2 days ago









      Mr.Shanks

      31




      31
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          you can use HttpContext.Current.Request.RequestContext.RouteData






          share|improve this answer





















          • this is have no data
            – Mr.Shanks
            2 days ago










          • This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From Review
            – Tân Nguyễn
            yesterday











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53238500%2ftake-param-from-routing-in-net-api%23new-answer', 'question_page');
          }
          );

          Post as a guest
































          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          you can use HttpContext.Current.Request.RequestContext.RouteData






          share|improve this answer





















          • this is have no data
            – Mr.Shanks
            2 days ago










          • This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From Review
            – Tân Nguyễn
            yesterday















          up vote
          0
          down vote













          you can use HttpContext.Current.Request.RequestContext.RouteData






          share|improve this answer





















          • this is have no data
            – Mr.Shanks
            2 days ago










          • This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From Review
            – Tân Nguyễn
            yesterday













          up vote
          0
          down vote










          up vote
          0
          down vote









          you can use HttpContext.Current.Request.RequestContext.RouteData






          share|improve this answer












          you can use HttpContext.Current.Request.RequestContext.RouteData







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 days ago









          Mohammad Homayooni

          32110




          32110












          • this is have no data
            – Mr.Shanks
            2 days ago










          • This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From Review
            – Tân Nguyễn
            yesterday


















          • this is have no data
            – Mr.Shanks
            2 days ago










          • This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From Review
            – Tân Nguyễn
            yesterday
















          this is have no data
          – Mr.Shanks
          2 days ago




          this is have no data
          – Mr.Shanks
          2 days ago












          This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From Review
          – Tân Nguyễn
          yesterday




          This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From Review
          – Tân Nguyễn
          yesterday


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53238500%2ftake-param-from-routing-in-net-api%23new-answer', 'question_page');
          }
          );

          Post as a guest




















































































          Popular posts from this blog

          Florida Star v. B. J. F.

          Error while running script in elastic search , gateway timeout

          Adding quotations to stringified JSON object values