Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines the best character encoding for reading or writing an HTTP entity body, given a set of content headers.
Namespace: System.Net.Http.Formatting
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
Syntax
'Declaration
Public Function SelectCharacterEncoding ( _
contentHeaders As HttpContentHeaders _
) As Encoding
'Usage
Dim instance As MediaTypeFormatter
Dim contentHeaders As HttpContentHeaders
Dim returnValue As Encoding
returnValue = instance.SelectCharacterEncoding(contentHeaders)
public Encoding SelectCharacterEncoding(
HttpContentHeaders contentHeaders
)
public:
Encoding^ SelectCharacterEncoding(
HttpContentHeaders^ contentHeaders
)
member SelectCharacterEncoding :
contentHeaders:HttpContentHeaders -> Encoding
public function SelectCharacterEncoding(
contentHeaders : HttpContentHeaders
) : Encoding
Parameters
contentHeaders
Type: HttpContentHeadersThe content headers.
Return Value
Type: System.Text.Encoding
The encoding that is the best match.