Horje
c# .net 3.5  post json httpclient Code Example
c# .net 3.5 post json httpclient
 System.Net.WebClient client = new System.Net.WebClient();
 client.Headers.Add("content-type", "application/json");//set your header here, you can add multiple headers
 string s = Encoding.ASCII.GetString(client.UploadData("http://localhost:1111/Service.svc/SignIn", "POST", Encoding.Default.GetBytes("{\"EmailId\": \"admin@admin.com\",\"Password\": \"pass#123\"}")));




Csharp

Related
linq c# Code Example linq c# Code Example
how to get an arrays length in c# Code Example how to get an arrays length in c# Code Example
how to decrease velocity of a Unity rigidbody Code Example how to decrease velocity of a Unity rigidbody Code Example
mvc c# return renderPartial Code Example mvc c# return renderPartial Code Example
get quaternion from vector unity Code Example get quaternion from vector unity Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11