Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaObject.cs / 1305376 / XmlSchemaObject.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { #if SILVERLIGHT //Empty parent class for XmlSchema public abstract class XmlSchemaObject {} #else 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(); } } #endif } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { #if SILVERLIGHT //Empty parent class for XmlSchema public abstract class XmlSchemaObject {} #else 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(); } } #endif } // 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
- SiteIdentityPermission.cs
- TransformDescriptor.cs
- FlowPanelDesigner.cs
- _ListenerResponseStream.cs
- ScriptingScriptResourceHandlerSection.cs
- CmsUtils.cs
- SafeBitVector32.cs
- Visitors.cs
- ColumnMapCopier.cs
- MultipleViewPattern.cs
- XmlSchemaValidationException.cs
- DataGridViewCellCancelEventArgs.cs
- InputScopeAttribute.cs
- AnonymousIdentificationModule.cs
- WebPartsPersonalization.cs
- DBConnection.cs
- RadialGradientBrush.cs
- TableProviderWrapper.cs
- DifferencingCollection.cs
- QuotaExceededException.cs
- MappingSource.cs
- SeparatorAutomationPeer.cs
- XmlTextReaderImpl.cs
- Control.cs
- ToolBarOverflowPanel.cs
- MenuItemStyle.cs
- CompositeDataBoundControl.cs
- MenuItemCollection.cs
- DataGridViewSortCompareEventArgs.cs
- InstallerTypeAttribute.cs
- DispatcherEventArgs.cs
- SqlCacheDependencyDatabase.cs
- LogLogRecordHeader.cs
- ListViewGroup.cs
- RegexRunner.cs
- SoapExtensionTypeElement.cs
- RequiredFieldValidator.cs
- ListControlActionList.cs
- XmlExtensionFunction.cs
- Suspend.cs
- HandlerMappingMemo.cs
- ComboBoxRenderer.cs
- HtmlEmptyTagControlBuilder.cs
- ConfigViewGenerator.cs
- ConnectionString.cs
- DesignerActionUIService.cs
- IsolatedStorageSecurityState.cs
- TransformPattern.cs
- BookmarkList.cs
- Misc.cs
- DataGridViewBindingCompleteEventArgs.cs
- DynamicExpression.cs
- Rotation3DKeyFrameCollection.cs
- DesignerSerializerAttribute.cs
- WebPartZone.cs
- LineGeometry.cs
- XmlNodeChangedEventManager.cs
- TcpStreams.cs
- TextEditorSpelling.cs
- DataKeyCollection.cs
- SuppressMergeCheckAttribute.cs
- WebBrowserHelper.cs
- TextEditorContextMenu.cs
- RIPEMD160Managed.cs
- DownloadProgressEventArgs.cs
- HttpListenerPrefixCollection.cs
- SystemResourceHost.cs
- FixedTextPointer.cs
- XmlElement.cs
- UdpConstants.cs
- ContextMenuStrip.cs
- FrameSecurityDescriptor.cs
- XmlEnumAttribute.cs
- DocumentXPathNavigator.cs
- FacetValues.cs
- ExceptionValidationRule.cs
- WorkflowItemPresenter.cs
- VectorAnimationBase.cs
- StatusBar.cs
- CompiledRegexRunnerFactory.cs
- ExtentJoinTreeNode.cs
- TemplateParser.cs
- PathFigureCollection.cs
- ObjectFullSpanRewriter.cs
- PointF.cs
- InternalControlCollection.cs
- ImportContext.cs
- PersonalizationStateQuery.cs
- FlowDocumentPage.cs
- CompiledXpathExpr.cs
- CompilerParameters.cs
- coordinator.cs
- TextTreeTextBlock.cs
- ReadOnlyDataSourceView.cs
- DoubleCollectionConverter.cs
- ComPlusTypeLoader.cs
- ReadOnlyNameValueCollection.cs
- ConditionalAttribute.cs
- HttpCapabilitiesSectionHandler.cs
- PeerContact.cs