Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Serialization / _Events.cs / 1 / _Events.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Serialization { using System.IO; using System; using System.Collections; using System.ComponentModel; ////// /// public delegate void XmlAttributeEventHandler(object sender, XmlAttributeEventArgs e); ///[To be supplied.] ////// /// public class XmlAttributeEventArgs : EventArgs { object o; XmlAttribute attr; string qnames; int lineNumber; int linePosition; internal XmlAttributeEventArgs(XmlAttribute attr, int lineNumber, int linePosition, object o, string qnames) { this.attr = attr; this.o = o; this.qnames = qnames; this.lineNumber = lineNumber; this.linePosition = linePosition; } ///[To be supplied.] ////// /// public object ObjectBeingDeserialized { get { return o; } } ///[To be supplied.] ////// /// public XmlAttribute Attr { get { return attr; } } ///[To be supplied.] ////// /// public int LineNumber { get { return lineNumber; } } ////// Gets the current line number. /// ////// /// public int LinePosition { get { return linePosition; } } ////// Gets the current line position. /// ////// /// public string ExpectedAttributes { get { return qnames == null ? string.Empty : qnames; } } } ////// List the qnames of attributes expected in the current context. /// ///public delegate void XmlElementEventHandler(object sender, XmlElementEventArgs e); /// public class XmlElementEventArgs : EventArgs { object o; XmlElement elem; string qnames; int lineNumber; int linePosition; internal XmlElementEventArgs(XmlElement elem, int lineNumber, int linePosition, object o, string qnames) { this.elem = elem; this.o = o; this.qnames = qnames; this.lineNumber = lineNumber; this.linePosition = linePosition; } /// public object ObjectBeingDeserialized { get { return o; } } /// public XmlElement Element { get { return elem; } } /// public int LineNumber { get { return lineNumber; } } /// public int LinePosition { get { return linePosition; } } /// /// /// public string ExpectedElements { get { return qnames == null ? string.Empty : qnames; } } } ////// List of qnames of elements expected in the current context. /// ////// /// public delegate void XmlNodeEventHandler(object sender, XmlNodeEventArgs e); ///[To be supplied.] ////// /// public class XmlNodeEventArgs : EventArgs { object o; XmlNode xmlNode; int lineNumber; int linePosition; internal XmlNodeEventArgs(XmlNode xmlNode, int lineNumber, int linePosition, object o) { this.o = o; this.xmlNode = xmlNode; this.lineNumber = lineNumber; this.linePosition = linePosition; } ///[To be supplied.] ////// /// public object ObjectBeingDeserialized { get { return o; } } ///[To be supplied.] ////// /// public XmlNodeType NodeType { get { return xmlNode.NodeType; } } ///[To be supplied.] ////// /// public string Name { get { return xmlNode.Name; } } ///[To be supplied.] ////// /// public string LocalName { get { return xmlNode.LocalName; } } ///[To be supplied.] ////// /// public string NamespaceURI { get { return xmlNode.NamespaceURI; } } ///[To be supplied.] ////// /// public string Text { get { return xmlNode.Value; } } ///[To be supplied.] ////// /// public int LineNumber { get { return lineNumber; } } ////// Gets the current line number. /// ////// /// public int LinePosition { get { return linePosition; } } } ////// Gets the current line position. /// ///public delegate void UnreferencedObjectEventHandler(object sender, UnreferencedObjectEventArgs e); /// public class UnreferencedObjectEventArgs : EventArgs { object o; string id; /// public UnreferencedObjectEventArgs(object o, string id) { this.o = o; this.id = id; } /// public object UnreferencedObject { get { return o; } } /// public string UnreferencedId { get { return id; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DeliveryRequirementsAttribute.cs
- HtmlTitle.cs
- EmbeddedMailObject.cs
- PageSetupDialog.cs
- TreeView.cs
- Accessible.cs
- DependencyStoreSurrogate.cs
- BmpBitmapEncoder.cs
- InstanceLockLostException.cs
- MenuItemBindingCollection.cs
- NameTable.cs
- Padding.cs
- CreateUserErrorEventArgs.cs
- SimpleApplicationHost.cs
- GraphicsPath.cs
- SqlDataSourceSelectingEventArgs.cs
- FixedTextView.cs
- ScrollBarAutomationPeer.cs
- ReverseInheritProperty.cs
- ResXDataNode.cs
- StatusBarPanelClickEvent.cs
- CriticalHandle.cs
- BrowsableAttribute.cs
- ByteStreamMessageUtility.cs
- DisplayMemberTemplateSelector.cs
- RenderOptions.cs
- Application.cs
- DbConnectionHelper.cs
- PropertyChangedEventArgs.cs
- BasicCellRelation.cs
- OutOfProcStateClientManager.cs
- KoreanLunisolarCalendar.cs
- ControlBuilder.cs
- SerializationException.cs
- AssociationSetMetadata.cs
- CompositeActivityTypeDescriptor.cs
- Enum.cs
- ModelVisual3D.cs
- FileAuthorizationModule.cs
- SafeNativeMethodsOther.cs
- EntityCollection.cs
- SQLInt16.cs
- Metadata.cs
- ProvideValueServiceProvider.cs
- CodeDOMUtility.cs
- MimeMapping.cs
- RTLAwareMessageBox.cs
- WindowsToolbar.cs
- X509ChainPolicy.cs
- ObjectSpanRewriter.cs
- FontDialog.cs
- DispatcherEventArgs.cs
- Underline.cs
- OdbcInfoMessageEvent.cs
- ProgressChangedEventArgs.cs
- DbXmlEnabledProviderManifest.cs
- EdmComplexPropertyAttribute.cs
- Int64AnimationUsingKeyFrames.cs
- ToolStripDesignerAvailabilityAttribute.cs
- StrongTypingException.cs
- iisPickupDirectory.cs
- DeclarativeCatalogPart.cs
- AtomServiceDocumentSerializer.cs
- dbdatarecord.cs
- ScrollBarAutomationPeer.cs
- WebBrowser.cs
- HuffCodec.cs
- StatusBarItemAutomationPeer.cs
- LocalizableResourceBuilder.cs
- CertificateElement.cs
- DBSchemaRow.cs
- Iis7Helper.cs
- InternalControlCollection.cs
- ListManagerBindingsCollection.cs
- CultureTableRecord.cs
- MultiSelector.cs
- ListViewInsertedEventArgs.cs
- ToolboxCategoryItems.cs
- UpdatePanelTrigger.cs
- AspProxy.cs
- HitTestResult.cs
- CorrelationScope.cs
- ContentIterators.cs
- SchemaSetCompiler.cs
- CroppedBitmap.cs
- StreamMarshaler.cs
- OutputCacheSettingsSection.cs
- DataBinding.cs
- coordinatorfactory.cs
- ClaimSet.cs
- QilLiteral.cs
- SkipQueryOptionExpression.cs
- CancellationHandlerDesigner.cs
- COM2PropertyDescriptor.cs
- ConfigurationManagerHelper.cs
- Parameter.cs
- MeasureItemEvent.cs
- MediaContext.cs
- complextypematerializer.cs
- PartialCachingControl.cs