Click or drag to resize

IZfePropertyKeysUserPassword Property

The key value for specifying a user's password when connecting to a session server.

Namespace:  MicroFocus.ZFE.Connector
Assembly:  MicroFocus.ZFE.Connector (in MicroFocus.ZFE.Connector.dll) Version: 1.3.422.0 (1.3.422.0)
Syntax
string UserPassword { 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.UserPassword, "password"
C#:
IZfeProperties props = new ZfeProperties();

props.SetProperty(ZfePropertyKeys.UserPasswordKey, "password");
See Also