Edit

Share via


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
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);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")]
protected Exception CreateUnknownTypeException(object o);
protected Exception CreateUnknownTypeException(object o);
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")>]
member this.CreateUnknownTypeException : obj -> Exception
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.

Attributes

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
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);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")]
protected Exception CreateUnknownTypeException(Type type);
protected Exception CreateUnknownTypeException(Type type);
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")>]
member this.CreateUnknownTypeException : Type -> Exception
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.

Attributes

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