NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlSerializer UnknownAttribute Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the UnknownAttribute event.

[Visual Basic]
Private Sub XmlSerializerName_UnknownAttribute( _
   ByVal sender As Object, _
   ByVal e As XmlAttributeEventArgs _
)
[C#]
private void XmlSerializerName_UnknownAttribute(
   object sender,
   XmlAttributeEventArgs e
);
[C++]
private: void XmlSerializerName_UnknownAttribute(
   Object* sender,
   XmlAttributeEventArgs* e
);
[JScript]
private XmlSerializerName_UnknownAttribute(
   sender : Object,
   e : XmlAttributeEventArgs
);

Parameters

sender
The source of the event.
e
A XmlAttributeEventArgs that contains the event data.

See Also

XmlSerializer Class | XmlSerializer MembersTopic | System.Xml.Serialization Namespace