Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AutomationElementCollection.cs
- SectionInput.cs
- PreviousTrackingServiceAttribute.cs
- SimpleApplicationHost.cs
- TimeSpanValidatorAttribute.cs
- TextBoxRenderer.cs
- ProtocolsSection.cs
- SemanticResultKey.cs
- MimeObjectFactory.cs
- DynamicMethod.cs
- BlurEffect.cs
- ToolStripPanelDesigner.cs
- TextEndOfLine.cs
- UpnEndpointIdentity.cs
- HuffCodec.cs
- DataContractSerializer.cs
- PropertyDescriptor.cs
- SqlConnectionManager.cs
- UIElementParaClient.cs
- ClientSideQueueItem.cs
- HWStack.cs
- HttpDictionary.cs
- ModifierKeysConverter.cs
- NumberFormatter.cs
- ProcessProtocolHandler.cs
- FormViewUpdateEventArgs.cs
- RadioButton.cs
- Emitter.cs
- DispatcherOperation.cs
- Peer.cs
- StrongNameMembershipCondition.cs
- SyntaxCheck.cs
- SafeViewOfFileHandle.cs
- Page.cs
- TextTreePropertyUndoUnit.cs
- MessageAction.cs
- AnnotationAuthorChangedEventArgs.cs
- SortedDictionary.cs
- DetailsViewUpdatedEventArgs.cs
- CodeSnippetStatement.cs
- SvcMapFileLoader.cs
- StaticExtension.cs
- DataGridClipboardHelper.cs
- Int32AnimationUsingKeyFrames.cs
- SqlDataAdapter.cs
- CheckBoxPopupAdapter.cs
- ProcessHostMapPath.cs
- RealizedColumnsBlock.cs
- SpeakCompletedEventArgs.cs
- RbTree.cs
- WithParamAction.cs
- WindowsListViewItemStartMenu.cs
- ScrollChangedEventArgs.cs
- FormViewAutoFormat.cs
- TabItem.cs
- ScriptManagerProxy.cs
- TargetException.cs
- QilUnary.cs
- UrlAuthorizationModule.cs
- SqlStatistics.cs
- XmlSchemaIdentityConstraint.cs
- SymbolMethod.cs
- ParameterInfo.cs
- XPathParser.cs
- DetailsViewModeEventArgs.cs
- ResourceBinder.cs
- SynchronizationScope.cs
- Positioning.cs
- HtmlControlAdapter.cs
- DynamicValueConverter.cs
- MarkupCompilePass1.cs
- Visual3DCollection.cs
- CodeSnippetExpression.cs
- TreeNodeSelectionProcessor.cs
- Soap12ProtocolImporter.cs
- DateTimeConverter.cs
- StyleBamlTreeBuilder.cs
- ScrollData.cs
- IconBitmapDecoder.cs
- TwoPhaseCommit.cs
- IChannel.cs
- DocumentXmlWriter.cs
- ExpressionWriter.cs
- BufferBuilder.cs
- EllipseGeometry.cs
- ArgumentNullException.cs
- ToolboxItem.cs
- AggregateNode.cs
- CodeThrowExceptionStatement.cs
- DBCommandBuilder.cs
- ParserHooks.cs
- XPathAncestorIterator.cs
- CheckBoxList.cs
- PropertyGridEditorPart.cs
- Enumerable.cs
- Evidence.cs
- SmiMetaData.cs
- LocalValueEnumerator.cs
- LineBreakRecord.cs
- ToolStripDropDownMenu.cs