Click or drag to resize
MOVEitMessageInfo Class
Container object used to provide information about a specific secure message on a MOVEit Transfer server.
Inheritance Hierarchy

Namespace: MOVEit.DMZ.API
Assembly: MOVEit.DMZ.API (in MOVEit.DMZ.API.dll) Version: 9.0.0.0
Syntax
public class MOVEitMessageInfo : MOVEitObjectInfo

The MOVEitMessageInfo type exposes the following members.

Properties
  NameDescription
Public propertyAttachments
Returns a Dictionary containing a list of message attachments.
Public propertyBody
The body of the message.
Public propertyDataInitialized
Returns the status of the data initialization for this object.
(Inherited from MOVEitObjectInfo.)
Public propertyDeliveryReceipts
Determines whether the message sender will receive delivery receipts for this message.
Public propertyFrom
The username of the message sender.
Public propertyFromRealName
The display name of the message sender.
Public propertyID
The unique ID of the message.
Public propertyNoReplyAll
Determines whether the Reply All feature will be disabled for recipients of this message.
Public propertyParentID
The unique ID of the parent message of this message.
Public propertyRecipients
Returns a Dictionary containing a list of message recipients.
Public propertyRecipientsString
A comma-delimited list of major recipients of the message.
Public propertySendStamp
The date and time the message was sent.
Public propertyState
The send state of the object.
Public propertySubject
The subject of the message.
Top
Methods
  NameDescription
Public methodAttachmentAdd
Adds an existing file to the list of attachments.
Public methodAttachmentAddBuffer
Adds the given byte array buffer to the list of attachments.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodRecipientAddGroup(String)
Adds a group to the list of recipients as a "TO" recipient.
Public methodRecipientAddGroup(String, MOVEitMessageInfoRecipientType)
Adds a group to the list of recipients with the specified recipient type.
Public methodRecipientAddUser(String)
Adds a user to the list of recipients as a "TO" recipient.
Public methodRecipientAddUser(String, MOVEitMessageInfoRecipientType)
Adds a user to the list of recipients with the specified recipient type.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

Instances of the object are returned by various methods of the Client object. An instance of the object is populated using information returned from the MOVEit Transfer host, and then passed on to the calling program, which can then access the information through the available methods.

Note that not all fields may be populated depending on the method used and the permissions of the currently signed-on user. A blank string is the uninitialized value for string fields, and -1 is the value for numeric fields.

See Also