Sample code for 30+ languages & platforms
Dart

Example: Http.RemoveRequestHeader method

Demonstrates how to call the RemoveRequestHeader method.

Also see: Chilkat Http Default and Auto-Filled Headers

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  final http = CkHttp();

  // Add a request header.
  http.setRequestHeader('X-Something', '1234');

  var responseBody = http.quickGetStr('https://chilkatsoft.com/helloWorld.txt');
  // Examine the request header we just sent..
  print(http.lastHeader);
  print('----');

  // Output:

  // GET /helloWorld.txt HTTP/1.1
  // Host: chilkatsoft.com
  // Accept: */*
  // Accept-Encoding: gzip
  // X-Something: 1234

  // Remove the request header we previously added:
  http.removeRequestHeader('X-Something');

  responseBody = http.quickGetStr('https://chilkatsoft.com/helloWorld.txt');
  print(http.lastHeader);

  // Output:

  // GET /helloWorld.txt HTTP/1.1
  // Host: chilkatsoft.com
  // Accept: */*
  // Accept-Encoding: gzip
}