Skip to content

InvalidTelemetryCallException Class

Definition

An exception thrown whenever an invalid or malformed call to Telemetry is made.

C#
[Serializable]
public class InvalidTelemetryCallException : Exception, ISerializable

Inheritance objectException

Implements ISerializable

Constructors

InvalidTelemetryCallException()

Initializes a new instance of the InvalidTelemetryCallException class.

C#
public InvalidTelemetryCallException()

InvalidTelemetryCallException(string)

Initializes a new instance of the InvalidTelemetryCallException class.

C#
public InvalidTelemetryCallException(string message)

Parameters

message string
A message to be associated with the exception.

InvalidTelemetryCallException(string, Exception)

Initializes a new instance of the InvalidTelemetryCallException class.

C#
public InvalidTelemetryCallException(string message, Exception inner)

Parameters

message string
A message to be associated with the exception.

inner Exception
An inner exception to be associated with the main exception.