Class PostReply
- Namespace
- Microsoft.Exchange.WebServices.Data
- Assembly
- Microsoft.Exchange.WebServices.dll
Represents a reply to a post item.
public sealed class PostReply : ServiceObject
- Inheritance
-
PostReply
- Inherited Members
Properties
Body
Gets or sets the body of the post reply.
public MessageBody Body { get; set; }
Property Value
BodyPrefix
Gets or sets the body prefix that should be prepended to the original post item's body.
public MessageBody BodyPrefix { get; set; }
Property Value
Subject
Gets or sets the subject of the post reply.
public string Subject { get; set; }
Property Value
Methods
Save()
Saves the post reply in the same folder as the original post item. Calling this method results in a call to EWS.
public PostItem Save()
Returns
- PostItem
A PostItem representing the posted reply.
Save(FolderId)
Saves the post reply in the specified folder. Calling this method results in a call to EWS.
public PostItem Save(FolderId destinationFolderId)
Parameters
destinationFolderId
FolderIdThe Id of the folder in which to save the post reply.
Returns
- PostItem
A PostItem representing the posted reply.
Save(WellKnownFolderName)
Saves the post reply in a specified folder. Calling this method results in a call to EWS.
public PostItem Save(WellKnownFolderName destinationFolderName)
Parameters
destinationFolderName
WellKnownFolderNameThe name of the folder in which to save the post reply.
Returns
- PostItem
A PostItem representing the posted reply.