LoginFailedException
Overview
The LoginFailedException class is a descendant of the ServerException class and represents login exceptions that occured during the logging of the DA client to the DA server.
You can use the LoginFailedException class inside the login method on the server side, where you can create and throw the exception and process it properly on the client side.
Location
- Reference: RemObjects.SDK.dll
- Namespace: RemObjects.SDK.Exceptions
- Ancestry: Exception | ServerException | LoginFailedException
constructor
Creates a new instance of the LoginFailedException class with the default exception message Login failed.
constructor
LoginFailedException()
Sub New()
constructor (SerializationInfo, StreamingContext) (declared in ServerException)
constructor(info: SerializationInfo; context: StreamingContext)
LoginFailedException(SerializationInfo info, StreamingContext context)
Sub New(info As SerializationInfo, context As StreamingContext)
Parameters:
- info:
- context:
constructor (String)
Creates a new instance of the LoginFailedException class with a specified exception message.
constructor(message: String)
LoginFailedException(String message)
Sub New(message As String)
Parameters:
- message:
constructor (String, Boolean)
Creates a new instance of the LoginFailedException class with a specified exception message and a boolean value that equals true if the exception was received from the server and was re-thrown on the client tier, or false if the exception was thrown on the same tier as the code processing it.
constructor(message: String; fromServer: Boolean)
LoginFailedException(String message, Boolean fromServer)
Sub New(message As String, fromServer As Boolean)
Parameters:
- message:
- fromServer:
constructor (String, Exception) (declared in ServerException)
constructor(message: String; innerException: Exception)
LoginFailedException(String message, Exception innerException)
Sub New(message As String, innerException As Exception)
Parameters:
- message:
- innerException:
FromServer (declared in ServerException)
This property is set to true if the exception was received from the server and was re-thrown on the client tier. It's false if the exception was thrown on the same tier as the code processing it.
property FromServer: Boolean read;
Boolean FromServer { get; }
ReadOnly Property FromServer() As Boolean
GetAttributeCount (declared in ServerException)
method GetAttributeCount: Int32
Int32 GetAttributeCount()
Function GetAttributeCount() As Int32
GetAttributeName (declared in ServerException)
method GetAttributeName(index: Int32): String
String GetAttributeName(Int32 index)
Function GetAttributeName(index As Int32) As String
Parameters:
- index:
GetAttributeValue (declared in ServerException)
method GetAttributeValue(index: Int32): String
String GetAttributeValue(Int32 index)
Function GetAttributeValue(index As Int32) As String
Parameters:
- index:
ServerStackTrace (declared in ServerException)
The stack trace of the exception location obtained from the server, if available.
property ServerStackTrace: String read write;
String ServerStackTrace { get; set; }
Property ServerStackTrace() As String
ToString (declared in ServerException)
method ToString: String
String ToString()
Function ToString() As String
FromServer (declared in ServerException)
This property is set to true if the exception was received from the server and was re-thrown on the client tier. It's false if the exception was thrown on the same tier as the code processing it.
property FromServer: Boolean read;
Boolean FromServer { get; }
ReadOnly Property FromServer() As Boolean
ServerStackTrace (declared in ServerException)
The stack trace of the exception location obtained from the server, if available.
property ServerStackTrace: String read write;
String ServerStackTrace { get; set; }
Property ServerStackTrace() As String
constructor
Creates a new instance of the LoginFailedException class with the default exception message Login failed.
constructor
LoginFailedException()
Sub New()
constructor (SerializationInfo, StreamingContext) (declared in ServerException)
constructor(info: SerializationInfo; context: StreamingContext)
LoginFailedException(SerializationInfo info, StreamingContext context)
Sub New(info As SerializationInfo, context As StreamingContext)
Parameters:
- info:
- context:
constructor (String)
Creates a new instance of the LoginFailedException class with a specified exception message.
constructor(message: String)
LoginFailedException(String message)
Sub New(message As String)
Parameters:
- message:
constructor (String, Boolean)
Creates a new instance of the LoginFailedException class with a specified exception message and a boolean value that equals true if the exception was received from the server and was re-thrown on the client tier, or false if the exception was thrown on the same tier as the code processing it.
constructor(message: String; fromServer: Boolean)
LoginFailedException(String message, Boolean fromServer)
Sub New(message As String, fromServer As Boolean)
Parameters:
- message:
- fromServer:
constructor (String, Exception) (declared in ServerException)
constructor(message: String; innerException: Exception)
LoginFailedException(String message, Exception innerException)
Sub New(message As String, innerException As Exception)
Parameters:
- message:
- innerException:
GetAttributeCount (declared in ServerException)
method GetAttributeCount: Int32
Int32 GetAttributeCount()
Function GetAttributeCount() As Int32
GetAttributeName (declared in ServerException)
method GetAttributeName(index: Int32): String
String GetAttributeName(Int32 index)
Function GetAttributeName(index As Int32) As String
Parameters:
- index:
GetAttributeValue (declared in ServerException)
method GetAttributeValue(index: Int32): String
String GetAttributeValue(Int32 index)
Function GetAttributeValue(index As Int32) As String
Parameters:
- index:
ToString (declared in ServerException)
method ToString: String
String ToString()
Function ToString() As String