Click or drag to resize
MimeKit

MailboxAddress Class

A mailbox address, as specified by rfc822.
Inheritance Hierarchy

Namespace:  MimeKit
Assembly:  MimeKit (in MimeKit.dll) Version: 3.0.0
Syntax
C#
public class MailboxAddress : InternetAddress

The MailboxAddress type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyAddress
Gets or sets the mailbox address.
Public propertyEncoding
Get or set the character encoding to use when encoding the name of the address.
(Inherited from InternetAddress.)
Public propertyIsInternational
Gets whether or not the address is an international address.
Public propertyName
Get or set the display name of the address.
(Inherited from InternetAddress.)
Public propertyRoute
Gets the mailbox route.
Top
Methods
  NameDescription
Public methodClone
Clone the mailbox address.
(Overrides InternetAddressClone.)
Public methodCompareTo
Compares two internet addresses.
(Inherited from InternetAddress.)
Public methodStatic memberDecodeAddrspec
Decode an addrspec token according to IDN decoding rules.
Public methodStatic memberEncodeAddrspec
Encode an addrspec token according to IDN encoding rules.
Public methodEquals(InternetAddress)
Determines whether the specified MailboxAddress is equal to the current MailboxAddress.
(Overrides InternetAddressEquals(InternetAddress).)
Public methodEquals(Object)
Determine whether the specified object is equal to the current object.
(Inherited from InternetAddress.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetAddress
Get the mailbox address, optionally encoded according to IDN encoding rules.
Public methodGetHashCode
Return the hash code for this instance.
(Inherited from InternetAddress.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnChanged
Raise the internal changed event used by MimeMessage to keep headers in sync.
(Inherited from InternetAddress.)
Public methodStatic memberParse(Byte)
Parse the given input buffer into a new MailboxAddress instance.
Public methodStatic memberParse(String)
Parse the given text into a new MailboxAddress instance.
Public methodStatic memberParse(Byte, Int32)
Parse the given input buffer into a new MailboxAddress instance.
Public methodStatic memberParse(ParserOptions, Byte)
Parse the given input buffer into a new MailboxAddress instance.
Public methodStatic memberParse(ParserOptions, String)
Parse the given text into a new MailboxAddress instance.
Public methodStatic memberParse(Byte, Int32, Int32)
Parse the given input buffer into a new MailboxAddress instance.
Public methodStatic memberParse(ParserOptions, Byte, Int32)
Parse the given input buffer into a new MailboxAddress instance.
Public methodStatic memberParse(ParserOptions, Byte, Int32, Int32)
Parse the given input buffer into a new MailboxAddress instance.
Public methodToString
Serialize an InternetAddress to a string suitable for display.
(Inherited from InternetAddress.)
Public methodToString(Boolean)
Serialize an InternetAddress to a string, optionally encoding it for transport.
(Inherited from InternetAddress.)
Public methodToString(FormatOptions, Boolean)
Returns a string representation of the MailboxAddress, optionally encoding it for transport.
(Overrides InternetAddressToString(FormatOptions, Boolean).)
Public methodStatic memberTryParse(Byte, MailboxAddress)
Try to parse the given input buffer into a new MailboxAddress instance.
Public methodStatic memberTryParse(String, MailboxAddress)
Try to parse the given text into a new MailboxAddress instance.
Public methodStatic memberTryParse(Byte, Int32, MailboxAddress)
Try to parse the given input buffer into a new MailboxAddress instance.
Public methodStatic memberTryParse(ParserOptions, Byte, MailboxAddress)
Try to parse the given input buffer into a new MailboxAddress instance.
Public methodStatic memberTryParse(ParserOptions, String, MailboxAddress)
Try to parse the given text into a new MailboxAddress instance.
Public methodStatic memberTryParse(Byte, Int32, Int32, MailboxAddress)
Try to parse the given input buffer into a new MailboxAddress instance.
Public methodStatic memberTryParse(ParserOptions, Byte, Int32, MailboxAddress)
Try to parse the given input buffer into a new MailboxAddress instance.
Public methodStatic memberTryParse(ParserOptions, Byte, Int32, Int32, MailboxAddress)
Try to parse the given input buffer into a new MailboxAddress instance.
Top
Operators
Remarks
Represents a mailbox address (commonly referred to as an email address) for a single recipient.
See Also