Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaObject.cs / 1 / XmlSchemaObject.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Diagnostics; using System.Xml.Serialization; using System.Security.Permissions; ////// /// [PermissionSetAttribute(SecurityAction.InheritanceDemand, Name = "FullTrust")] public abstract class XmlSchemaObject { int lineNum = 0; int linePos = 0; string sourceUri; XmlSerializerNamespaces namespaces; XmlSchemaObject parent; //internal bool isProcessing; //Indicates whether this object is currently being processed ///[To be supplied.] ////// /// [XmlIgnore] public int LineNumber { get { return lineNum;} set { lineNum = value;} } ///[To be supplied.] ////// /// [XmlIgnore] public int LinePosition { get { return linePos;} set { linePos = value;} } ///[To be supplied.] ////// /// [XmlIgnore] public string SourceUri { get { return sourceUri;} set { sourceUri = value;} } ///[To be supplied.] ///[XmlIgnore] public XmlSchemaObject Parent { get { return parent;} set { parent = value;} } /// [XmlNamespaceDeclarations] public XmlSerializerNamespaces Namespaces { get { if (namespaces == null) namespaces = new XmlSerializerNamespaces(); return namespaces; } set { namespaces = value; } } internal virtual void OnAdd(XmlSchemaObjectCollection container, object item) {} internal virtual void OnRemove(XmlSchemaObjectCollection container, object item) {} internal virtual void OnClear(XmlSchemaObjectCollection container) {} [XmlIgnore] internal virtual string IdAttribute { get { Debug.Assert(false); return null; } set { Debug.Assert(false); } } internal virtual void SetUnhandledAttributes(XmlAttribute[] moreAttributes) {} internal virtual void AddAnnotation(XmlSchemaAnnotation annotation) {} [XmlIgnore] internal virtual string NameAttribute { get { Debug.Assert(false); return null; } set { Debug.Assert(false); } } [XmlIgnore] internal bool IsProcessing { get { return isProcessing; } set { isProcessing = value; } } internal virtual XmlSchemaObject Clone() { return (XmlSchemaObject)MemberwiseClone(); } } } // 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
- MatrixStack.cs
- SQLBytesStorage.cs
- FileLoadException.cs
- Function.cs
- SqlClientWrapperSmiStream.cs
- DictionarySurrogate.cs
- WasNotInstalledException.cs
- Run.cs
- FormViewDeletedEventArgs.cs
- RealProxy.cs
- TextTreeTextBlock.cs
- SplitterEvent.cs
- RepeatBehaviorConverter.cs
- GenericWebPart.cs
- X509WindowsSecurityToken.cs
- FileDetails.cs
- ConfigurationElementCollection.cs
- Main.cs
- ColorIndependentAnimationStorage.cs
- UnsafeNativeMethods.cs
- UpdateException.cs
- SoapSchemaExporter.cs
- HtmlTableCellCollection.cs
- IApplicationTrustManager.cs
- FrameworkElementAutomationPeer.cs
- XmlSerializationWriter.cs
- XmlEventCache.cs
- UndoUnit.cs
- PropertyConverter.cs
- ExceptionUtil.cs
- XmlQueryCardinality.cs
- KnownBoxes.cs
- UnsafeNativeMethods.cs
- XmlSchemaNotation.cs
- ServiceChannelManager.cs
- HTTPNotFoundHandler.cs
- CompositeFontFamily.cs
- Descriptor.cs
- ColorAnimationBase.cs
- ActivityExecutionFilter.cs
- ArrayExtension.cs
- ErrorFormatterPage.cs
- ReadingWritingEntityEventArgs.cs
- OperationAbortedException.cs
- DesignerDataColumn.cs
- GcSettings.cs
- LoginAutoFormat.cs
- Unit.cs
- AttachedAnnotationChangedEventArgs.cs
- VectorAnimation.cs
- Point3DConverter.cs
- SelectionHighlightInfo.cs
- WindowsGraphicsWrapper.cs
- SplitterPanel.cs
- PropertyGeneratedEventArgs.cs
- SimpleColumnProvider.cs
- ProfileParameter.cs
- Substitution.cs
- TableCellAutomationPeer.cs
- ToolStripButton.cs
- RoutedPropertyChangedEventArgs.cs
- HttpPostedFile.cs
- SystemTcpStatistics.cs
- ListControl.cs
- DescriptionCreator.cs
- DesignerDataStoredProcedure.cs
- SecurityDescriptor.cs
- Part.cs
- ToolStripContentPanelRenderEventArgs.cs
- DirectoryNotFoundException.cs
- TreeViewAutomationPeer.cs
- XmlSchemaDocumentation.cs
- FormsAuthenticationTicket.cs
- RepeatButtonAutomationPeer.cs
- TextShapeableCharacters.cs
- processwaithandle.cs
- ReadOnlyCollectionBase.cs
- WebPartZone.cs
- ClientBuildManagerCallback.cs
- DataGridViewCellEventArgs.cs
- XPathParser.cs
- XmlChoiceIdentifierAttribute.cs
- TypeNameHelper.cs
- Point3D.cs
- PropertyKey.cs
- IFlowDocumentViewer.cs
- ISFTagAndGuidCache.cs
- TraceShell.cs
- X500Name.cs
- DataViewSettingCollection.cs
- ObjectNotFoundException.cs
- SoapTypeAttribute.cs
- IconHelper.cs
- WebCategoryAttribute.cs
- Base64Encoder.cs
- BamlBinaryReader.cs
- CodeCatchClause.cs
- Int32KeyFrameCollection.cs
- TriState.cs
- CqlBlock.cs