| Visual Basic (Declaration) | |
|---|---|
<CategoryAttribute("Behavior")> <DescriptionAttribute("When true, the Uid property of each PopMessage is initialized during Login().")> <DefaultValueAttribute()> Public Property AutoUid As Boolean | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Pop Dim value As Boolean instance.AutoUid = value value = instance.AutoUid | |
| C# | |
|---|---|
[CategoryAttribute("Behavior")] [DescriptionAttribute("When true, the Uid property of each PopMessage is initialized during Login().")] [DefaultValueAttribute()] public bool AutoUid {get; set;} | |
| Managed Extensions for C++ | |
|---|---|
[CategoryAttribute("Behavior")] [DescriptionAttribute("When true, the Uid property of each PopMessage is initialized during Login().")] [DefaultValueAttribute()] public: __property bool get_AutoUid(); public: __property void set_AutoUid( bool value ); | |
| C++/CLI | |
|---|---|
[CategoryAttribute("Behavior")] [DescriptionAttribute("When true, the Uid property of each PopMessage is initialized during Login().")] [DefaultValueAttribute()] public: property bool AutoUid { bool get(); void set ( bool value); } | |
Property Value
true if the unique ID for each message should be retrieved during login, false otherwise. The default value is true.When true, the Pop component will issue a "UIDL" command to the POP server, requesting a unique ID for each message. The unique IDs returned by the server are accessible via the PopMessage.Uid property.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code