HeaderField

Overview

HeaderFiled contains one field for the fields of the header in an e-mail. It can be Subject of an e-mail, Message-ID, User-Agent, Date of an e-mail and Newsgroup for newsgroup articles.

Every HeaderField object can contain a collection of key/value pairs separated with semicolon. Every key and its value connected with equal sign (=).

Location

  • Reference:
    • RemObjects.InternetPack.dll  .NET, .NET Core 5.0, .NET Standard 2.0
    • RemObjects.InternetPack.fx  Island
    • libRemObjects.InternetPack.fx  Toffee
  • Namespace: RemObjects.InternetPack.Messages


Properties


Value  virtual

Specifies the value of a header field in an e-mail.

 

property Value: String read write;

 

String Value { get; set; }

 

var Value: String { get{} set{} }

 

Property Value() As String

Instance Methods


constructor

 

constructor(value: String)

 

HeaderField(String value)

 

init(_ value: String)

 

Sub New(value As String)

Parameters:

  • value:

description  override Toffee

 

func description() -> NSString

Parse  virtual

Analyzes the Value and represents its separate parts as a collection of key/value pairs.

 

method Parse

 

void Parse()

 

func Parse()

 

Sub Parse()

ToString  virtual

 

method ToString: PlatformString

 

PlatformString ToString()

 

func ToString() -> String

 

Function ToString() As PlatformString