HttpWebRequest.Accept Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets or sets the value of the Accept HTTP header.
Assembly: System.Net (in System.Net.dll)
To clear the Accept HTTP header, set the Accept property to Nothing.
Note: |
|---|
The value for this property is stored in WebHeaderCollection. If WebHeaderCollection is set, the property value is lost. |
' Change this Uri to a public server Dim myUri As System.Uri = New Uri("http://www.contoso.com") ' Create a 'HttpWebRequest' object. Dim myHttpWebRequest As HttpWebRequest = WebRequest.Create(myUri) ' Set the 'Accept' property to accept an image of any type. myHttpWebRequest.Accept="image/*" ' Get the 'Accept' property and print the current value outputBlock.Text &= "HttpWebRequest.Accept: " outputBlock.Text &= myHttpWebRequest.Accept outputBlock.Text &= vbCrLf
Show:
Note: