TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Arya raj
NA
57
34.8k
how to fetch groupName and typeName from httpRequestMessage
Jul 18 2019 2:23 AM
[Route(
"api/v1/DRS/FileUpload/GetAttribues/{groupName}/{typeName}"
)]
[HttpGet]
public
async Task<HttpResponseMessage>
GetAttribues(HttpRequestMessage Attri)
{
Debugger.Launch();
try
{
using
(HttpClient client =
new
HttpClient())
{
client.DefaultRequestHeaders.Accept.Clear();
//String
path=Request.Url.GetLeftPart(UriPartial.Path);
HttpResponseMessage response = await client.GetAsync(
"http://localhost:8089/document/getattributes/"
+);
if
(response.IsSuccessStatusCode)
{
Console.Write(
"Success"
);
}
else
{
Console.Write(
"Failure"
);
}
return
response;
}
}
catch
(Exception e)
{
throw
e;
}
Reply
Answers (
2
)
Tree View Data Transferring
system.null reference exception Error