mscorlib(4.0.0.0) API with additions
UriFormatException.cs
2 
3 namespace System
4 {
7  [global::__DynamicallyInvokable]
9  {
11  [global::__DynamicallyInvokable]
13  {
14  }
15 
18  [global::__DynamicallyInvokable]
19  public UriFormatException(string textString)
20  : base(textString)
21  {
22  }
23 
27  [global::__DynamicallyInvokable]
28  public UriFormatException(string textString, Exception e)
29  : base(textString, e)
30  {
31  }
32 
36  protected UriFormatException(SerializationInfo serializationInfo, StreamingContext streamingContext)
37  : base(serializationInfo, streamingContext)
38  {
39  }
40 
44  void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
45  {
46  base.GetObjectData(serializationInfo, streamingContext);
47  }
48  }
49 }
Definition: __Canon.cs:3
UriFormatException()
Initializes a new instance of the T:System.UriFormatException class.
Describes the source and destination of a given serialized stream, and provides an additional caller-...
The exception that is thrown when the format of an argument is invalid, or when a composite format st...
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Allows an object to control its own serialization and deserialization.
Definition: ISerializable.cs:8
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
UriFormatException(SerializationInfo serializationInfo, StreamingContext streamingContext)
Initializes a new instance of the T:System.UriFormatException class from the specified T:System....
Specifies that the class can be serialized.
UriFormatException(string textString)
Initializes a new instance of the T:System.UriFormatException class with the specified message.
void GetObjectData(SerializationInfo info, StreamingContext context)
Populates a T:System.Runtime.Serialization.SerializationInfo with the data needed to serialize the ta...
UriFormatException(string textString, Exception e)
Initializes a new instance of the T:System.UriFormatException class with a specified error message an...
The exception that is thrown when an invalid Uniform Resource Identifier (URI) is detected.