UidSupported Property

Indicates whether or not an email server support Uids.

Syntax

Property UidSupported As Boolean

Parameters

None

Examples

IronPython

#Get mail server UID supported flag
is_UID = Host.ScriptData.MailServer["myServer"].UidSupported

#Set mail server UID supported flag
Host.ScriptData.MailServer["myServer"].UidSupported = True


C#

//Get mail server UID supported flag
bool is_UID = ScriptData.MailServers["myServer"].UidSupported;

//Set mail server UID supported flag
ScriptData.MailServers["myServer"].UidSupported = true;

Remarks