XmlNodeEventArgs::Name Property

 

Gets the name of the XML node being deserialized.

Namespace:   System.Xml.Serialization
Assembly:  System.Xml (in System.Xml.dll)

public:
property String^ Name {
	String^ get();
}

Property Value

Type: System::String^

The name of the node being deserialized.

The following example prints the name of the unknown node that caused the UnknownNode event to occur.

void serializer_UnknownNode( Object^ /*sender*/, XmlNodeEventArgs^ e )
{
   Console::WriteLine( "UnknownNode Name: {0}", e->Name );
}

.NET Framework
Available since 1.1
Return to top
Show: