PowerTCP Mail for .NET
FullName Property




Gets or sets the full path name of the mailbox.
Syntax
public string FullName {get; set;}
public: __property string* get_FullName();
public: __property void set_FullName( 
   string* value
);
public:
property String^ FullName {
   String^ get();
   void set (    String^ value);
}
Public Property FullName As String
 
Dim instance As Mailbox
Dim value As String
 
instance.FullName = value
 
value = instance.FullName

Property Value

A string representing the full path name of the mailbox.
Remarks

For example, with a mailbox named:

            "inbox\archives\user"
            

the Mailbox name-related properties would be as follows:

Property Value
Mailbox.Name "user"
Mailbox.FullName "inbox\archives\user"

When setting this property, a RENAME command is sent to the server. If renaming a sibling mailbox, use Name instead. For example, to rename

            "company/users/bob"
            

to

            "company/users/bobjohnson"
            

set Mailbox.Name to "bobjohnson". However, to rename

            "company/users/bob"
            

to

            "archive/bobbackup"
            

set Mailbox.FullName to "archive/bobbackup".

"&" is represented when sent as "&-". Anything between an "&" and a "-" is converted to Unicode.

Setting this property closes the selected mailbox by setting SelectedMailbox to null.

See Also

Reference

Mailbox Class
Mailbox Members


PowerTCP Mail for .NET Documentation Version 4.3
© 2018 Dart Communications. All Rights Reserved.
Send comments on this topic