XmlSerializationWriter.CreateChoiceIdentifierValueException Method

Definition

Creates an InvalidOperationException that indicates an unexpected name for an element that adheres to an XML Schema choice element declaration.

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

protected:
 Exception ^ CreateChoiceIdentifierValueException(System::String ^ value, System::String ^ identifier, System::String ^ name, System::String ^ ns);
protected Exception CreateChoiceIdentifierValueException (string value, string identifier, string name, string ns);
member this.CreateChoiceIdentifierValueException : string * string * string * string -> Exception
Protected Function CreateChoiceIdentifierValueException (value As String, identifier As String, name As String, ns As String) As Exception

Parameters

value
String

The name that is not valid.

identifier
String

The choice element declaration that the name belongs to.

name
String

The expected local name of an element.

ns
String

The expected namespace of an element.

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