Click or drag to resize
MimeKit

StoreFlagsRequest Class

A request for storing message flags and keywords.
Inheritance Hierarchy
SystemObject
  MailKitStoreFlagsRequest

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public class StoreFlagsRequest : IStoreFlagsRequest, 
	IStoreRequest

The StoreFlagsRequest type exposes the following members.

Constructors
 NameDescription
Public methodStoreFlagsRequest(StoreAction, MessageFlags) Initializes a new instance of the StoreFlagsRequest class.
Public methodStoreFlagsRequest(StoreAction, IEnumerableString) Initializes a new instance of the StoreFlagsRequest class.
Public methodStoreFlagsRequest(StoreAction, MessageFlags, IEnumerableString) Initializes a new instance of the StoreFlagsRequest class.
Top
Properties
 NameDescription
Public propertyAction Get the store action to perform.
Public propertyFlags Get or set the flags to add, remove or set on the message.
Public propertyKeywords Get or set the keywords to add, remove or set on the message.
Public propertySilent Get or set whether the store operation should run silently.
Public propertyUnchangedSince Get or set a mod-sequence number that the store operation should use to decide if the flags of a message should be updated or not.
Top
Methods
 NameDescription
Public methodEquals
(Inherited from Object)
Protected methodFinalize
(Inherited from Object)
Public methodGetHashCode
(Inherited from Object)
Public methodGetType
(Inherited from Object)
Protected methodMemberwiseClone
(Inherited from Object)
Public methodToString
(Inherited from Object)
Top
Remarks

A request suitable for storing message flags and keywords.

This request is designed to be used with the Store and StoreAsync methods.

See Also