XmlSerializationReader.CreateInvalidCastException Method

Definition

Creates an InvalidCastException that indicates that an explicit reference conversion failed.

Overloads

CreateInvalidCastException(Type, Object)

This API supports the product infrastructure and is not intended to be used directly from your code.

Creates an InvalidCastException that indicates that an explicit reference conversion failed.

CreateInvalidCastException(Type, Object, String)

This API supports the product infrastructure and is not intended to be used directly from your code.

Creates an InvalidCastException that indicates that an explicit reference conversion failed.

Remarks

The protected members of XmlSerializationReader are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

CreateInvalidCastException(Type, Object)

Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs

Creates an InvalidCastException that indicates that an explicit reference conversion failed.

This API supports the product infrastructure and is not intended to be used directly from your code.

protected:
 Exception ^ CreateInvalidCastException(Type ^ type, System::Object ^ value);
protected Exception CreateInvalidCastException (Type type, object? value);
protected Exception CreateInvalidCastException (Type type, object value);
member this.CreateInvalidCastException : Type * obj -> Exception
Protected Function CreateInvalidCastException (type As Type, value As Object) As Exception

Parameters

type
Type

The Type that an object cannot be cast to. This type is incorporated into the exception message.

value
Object

The object that cannot be cast. This object is incorporated into the exception message.

Returns

An InvalidCastException exception.

Remarks

The protected members of XmlSerializationReader are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

Applies to

CreateInvalidCastException(Type, Object, String)

Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs

Creates an InvalidCastException that indicates that an explicit reference conversion failed.

This API supports the product infrastructure and is not intended to be used directly from your code.

protected:
 Exception ^ CreateInvalidCastException(Type ^ type, System::Object ^ value, System::String ^ id);
protected Exception CreateInvalidCastException (Type type, object? value, string? id);
protected Exception CreateInvalidCastException (Type type, object value, string id);
member this.CreateInvalidCastException : Type * obj * string -> Exception
Protected Function CreateInvalidCastException (type As Type, value As Object, id As String) As Exception

Parameters

type
Type

The Type that an object cannot be cast to. This type is incorporated into the exception message.

value
Object

The object that cannot be cast. This object is incorporated into the exception message.

id
String

A string identifier.

Returns

An InvalidCastException exception.

Remarks

The protected members of XmlSerializationReader are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

Applies to