Click or drag to resize
MimeKit

AnnotationEntry Class

An annotation entry.
Inheritance Hierarchy
SystemObject
  MailKitAnnotationEntry

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public class AnnotationEntry : IEquatable<AnnotationEntry>

The AnnotationEntry type exposes the following members.

Constructors
 NameDescription
Public methodAnnotationEntry(String, AnnotationScope) Initializes a new instance of the AnnotationEntry struct.
Public methodAnnotationEntry(BodyPart, String, AnnotationScope) Initializes a new instance of the AnnotationEntry struct.
Public methodAnnotationEntry(String, String, AnnotationScope) Initializes a new instance of the AnnotationEntry struct.
Top
Properties
 NameDescription
Public propertyEntry Get the annotation entry specifier.
Public propertyPartSpecifier Get the part-specifier component of the annotation entry.
Public propertyPath Get the path component of the annotation entry.
Public propertyScope Get the scope of the annotation.
Top
Methods
 NameDescription
Public methodEquals(AnnotationEntry) Determines whether the specified AnnotationEntry is equal to the current AnnotationEntry.
Public methodEquals(Object) Determine whether the specified Object is equal to the current AnnotationEntry.
(Overrides ObjectEquals(Object))
Protected methodFinalize
(Inherited from Object)
Public methodGetHashCode Serves as a hash function for a AnnotationEntry object.
(Overrides ObjectGetHashCode)
Public methodGetType
(Inherited from Object)
Protected methodMemberwiseClone
(Inherited from Object)
Public methodStatic memberParse Parse an annotation entry.
Public methodToString Returns a String that represents the current AnnotationEntry.
(Overrides ObjectToString)
Top
Operators
 NameDescription
Public operatorStatic memberEquality(AnnotationEntry, AnnotationEntry) Determines whether two annotation entries are equal.
Public operatorStatic memberInequality(AnnotationEntry, AnnotationEntry) Determines whether two annotation entries are not equal.
Top
Fields
 NameDescription
Public fieldStatic memberAltSubject An annotation entry for an alternate subject on a message.
Public fieldStatic memberComment An annotation entry for a comment on a message.
Public fieldStatic memberFlags An annotation entry for flags on a message.
Public fieldStatic memberPrivateAltSubject An annotation entry for a private alternate subject on a message.
Public fieldStatic memberPrivateComment An annotation entry for a private comment on a message.
Public fieldStatic memberPrivateFlags An annotation entry for private flags on a message.
Public fieldStatic memberSharedAltSubject An annotation entry for a shared alternate subject on a message.
Public fieldStatic memberSharedComment An annotation entry for a shared comment on a message.
Public fieldStatic memberSharedFlags Aa annotation entry for shared flags on a message.
Top
Remarks

An annotation entry.

For more information about annotations, see rfc5257.

See Also