XmlSerializationWriter.CreateInvalidAnyTypeException Method

Definition

Overloads

CreateInvalidAnyTypeException(Object)

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

Creates an InvalidOperationException that indicates the XmlAnyElementAttribute which has been invalidly applied to a member; only members that are of type XmlNode, or derived from XmlNode, are valid.

CreateInvalidAnyTypeException(Type)

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

Creates an InvalidOperationException that indicates the XmlAnyElementAttribute which has been invalidly applied to a member; only members that are of type XmlNode, or derived from XmlNode, are valid.

CreateInvalidAnyTypeException(Object)

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

Creates an InvalidOperationException that indicates the XmlAnyElementAttribute which has been invalidly applied to a member; only members that are of type XmlNode, or derived from XmlNode, are valid.

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

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

Parameters

o
Object

The object that represents the invalid member.

Returns

The newly created exception.

Applies to

CreateInvalidAnyTypeException(Type)

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

Creates an InvalidOperationException that indicates the XmlAnyElementAttribute which has been invalidly applied to a member; only members that are of type XmlNode, or derived from XmlNode, are valid.

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

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

Parameters

type
Type

The Type that is invalid.

Returns

The newly created exception.

Applies to