XmlSerializationWriter.CreateUnknownTypeException Method

Definition

Creates an InvalidOperationException that indicates that a type being serialized is not being used in a valid manner or is unexpectedly encountered.

Overloads

CreateUnknownTypeException(Object)

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

Creates an InvalidOperationException that indicates that a type being serialized is not being used in a valid manner or is unexpectedly encountered.

CreateUnknownTypeException(Type)

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

Creates an InvalidOperationException that indicates that a type being serialized is not being used in a valid manner or is unexpectedly encountered.

CreateUnknownTypeException(Object)

Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs

Creates an InvalidOperationException that indicates that a type being serialized is not being used in a valid manner or is unexpectedly encountered.

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

protected:
 Exception ^ CreateUnknownTypeException(System::Object ^ o);
protected Exception CreateUnknownTypeException (object o);
member this.CreateUnknownTypeException : obj -> Exception
Protected Function CreateUnknownTypeException (o As Object) As Exception

Parameters

o
Object

The object whose type cannot be serialized.

Returns

The newly created exception.

Remarks

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

Applies to

CreateUnknownTypeException(Type)

Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs

Creates an InvalidOperationException that indicates that a type being serialized is not being used in a valid manner or is unexpectedly encountered.

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

protected:
 Exception ^ CreateUnknownTypeException(Type ^ type);
protected Exception CreateUnknownTypeException (Type type);
member this.CreateUnknownTypeException : Type -> Exception
Protected Function CreateUnknownTypeException (type As Type) As Exception

Parameters

type
Type

The type that cannot be serialized.

Returns

The newly created exception.

Remarks

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

Applies to