I have defined a session variable in Api controller
HttpContext.Current.Session["_USBDocuments"] = folders;
Now, i want to access the session variable which is defined in api controller in the normal controller.
Is it possible to access like this? If it is possible then what is the way to access it?
Thank You.