In This Topic
Extra Http Headers should users wish to add to the Request
Syntax
'Declaration
Public Property ExtraHeaders As System.Collections.Generic.List(Of KeyValuePair(Of String,String))
'Usage
Dim instance As DicomWebClient
Dim value As System.Collections.Generic.List(Of KeyValuePair(Of String,String))
instance.ExtraHeaders = value
value = instance.ExtraHeaders
public System.Collections.Generic.List<KeyValuePair<string,string>> ExtraHeaders {get; set;}
public read-write property ExtraHeaders: System.Collections.Generic.List;
public function get,set ExtraHeaders : System.Collections.Generic.List
public: __property System.Collections.Generic.List<KeyValuePair<string*,string*>>* get_ExtraHeaders();
public: __property void set_ExtraHeaders(
System.Collections.Generic.List<KeyValuePair<string*,string*>>* value
);
public:
property System.Collections.Generic.List<KeyValuePair<String^,String^>>^ ExtraHeaders {
System.Collections.Generic.List<KeyValuePair<String^,String^>>^ get();
void set ( System.Collections.Generic.List<KeyValuePair<String^,String^>>^ value);
}
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also