Click or drag to resize

IZfePropertyKeysSessionServerUrl Property

The key value for the session server URL.

Namespace:  MicroFocus.ZFE.Connector
Assembly:  MicroFocus.ZFE.Connector (in MicroFocus.ZFE.Connector.dll) Version: 1.2.292.0 (1.2.292.0)
Syntax
string SessionServerUrl { 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.SessionServerUrl, "https://your.sessionserver.com:7443"
C#:
IZfeProperties props = new ZfeProperties();

props.SetProperty(ZfePropertyKeys.SessionServerUrlKey, "https://your.sessionserver.com:7443");
See Also