Click or drag to resize

IZfePropertyKeysUserName Property

The key value for specifying a user name when connecting to a session server.

Namespace:  MicroFocus.ZFE.Connector
Assembly:  MicroFocus.ZFE.Connector (in MicroFocus.ZFE.Connector.dll) Version: 1.2.292.0 (1.2.292.0)
Syntax
string UserName { get; }

Property Value

Type: String
Examples
Visual Basic for Applications:
Dim props As ZfeProperties
Dim propKeys As ZfePropertyKeys
Set props = new ZfeProperties()
Set propKeys = new ZfePropertyKeys()

props.SetProperty propKeys.UserName, "username"
C#:
IZfeProperties props = new ZfeProperties();

props.SetProperty(ZfePropertyKeys.UserNameKey, "username");
See Also