SessionLaunchInfo Class

The SAP GuiSession launch parameters.

C# Syntax

public class SessionLaunchInfo
Inheritance Hierarchy

System.Object
   HP.LFT.SDK.SAP.GUI.SessionLaunchInfo

Public Methods
 NameDescription
Public MethodClient

Sets and returns the SAP client.

C# Syntax

public string Client {get; set;}
Public MethodInstanceNumber

Sets and returns the system number property of the session.

C# Syntax

public Nullable<int> InstanceNumber {get; set;}
Public MethodLanguage

Sets and returns the 2-letter language code.

C# Syntax

                            public string Language {get; set;}
Public MethodPassword

Sets and returns the encrypted password.

C# Syntax

public string Password {get; set;}
Public MethodServerDescription

Sets and returns the server description, which is identical to the one displayed in the SAP Logon dialog box and is case-sensitive.

C# Syntax

public string ServerDescription {get; set;}
Public MethodServerIp

Sets and returns the SAP server IP.

C# Syntax

public IPAddress ServerIp {get; set;}
Public MethodUsername

Sets and returns the log-on user name.

C# Syntax

public string Username {get; set;}
Top