Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaObject.cs / 2 / 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
- DeploymentSection.cs
- CodeSubDirectory.cs
- Executor.cs
- ClientApiGenerator.cs
- SystemColors.cs
- contentDescriptor.cs
- PeerCustomResolverElement.cs
- _FixedSizeReader.cs
- WizardSideBarListControlItem.cs
- SignedInfo.cs
- NullRuntimeConfig.cs
- EditingMode.cs
- OleDbMetaDataFactory.cs
- IntSumAggregationOperator.cs
- TemplatedWizardStep.cs
- RepeatButton.cs
- DefaultValidator.cs
- RoutedUICommand.cs
- DataBindingList.cs
- WindowsAuthenticationModule.cs
- GuidelineSet.cs
- RayHitTestParameters.cs
- WindowsScrollBarBits.cs
- SmiXetterAccessMap.cs
- SplitterPanel.cs
- SubclassTypeValidatorAttribute.cs
- SizeChangedEventArgs.cs
- ResourceCategoryAttribute.cs
- CalendarDesigner.cs
- HMACSHA256.cs
- BaseResourcesBuildProvider.cs
- BigInt.cs
- PassportAuthentication.cs
- LassoHelper.cs
- DataGridViewCellValidatingEventArgs.cs
- RootBrowserWindowProxy.cs
- FlowDocumentPage.cs
- HttpConfigurationSystem.cs
- SqlDataSourceTableQuery.cs
- AutomationPropertyInfo.cs
- InvalidProgramException.cs
- KnownBoxes.cs
- Encoder.cs
- XPathNodeHelper.cs
- OutputCacheSection.cs
- AssemblyBuilder.cs
- TextDpi.cs
- NotImplementedException.cs
- FileLoadException.cs
- InvalidDataException.cs
- ScriptBehaviorDescriptor.cs
- CodeSubDirectoriesCollection.cs
- DictionaryTraceRecord.cs
- SqlBuilder.cs
- TreeChangeInfo.cs
- RuntimeConfig.cs
- NavigationProperty.cs
- SelectedDatesCollection.cs
- Collection.cs
- UrlPropertyAttribute.cs
- SafeNativeMethodsOther.cs
- ThreadExceptionDialog.cs
- WebConfigurationHost.cs
- DispatcherHooks.cs
- FlowLayoutSettings.cs
- FixedSOMLineCollection.cs
- Model3DCollection.cs
- Animatable.cs
- LineGeometry.cs
- ByteStorage.cs
- FragmentQueryKB.cs
- CodeChecksumPragma.cs
- PersianCalendar.cs
- StreamWithDictionary.cs
- ToggleProviderWrapper.cs
- GeometryHitTestParameters.cs
- OutputCacheSection.cs
- OSFeature.cs
- BodyGlyph.cs
- SafeFileHandle.cs
- RowToFieldTransformer.cs
- PlatformNotSupportedException.cs
- RuntimeConfig.cs
- XmlNodeComparer.cs
- ShaderEffect.cs
- WebPartDescription.cs
- BaseInfoTable.cs
- FixedSOMContainer.cs
- TransformedBitmap.cs
- GeneratedCodeAttribute.cs
- Exceptions.cs
- GridViewRowPresenterBase.cs
- GPRECTF.cs
- SystemNetworkInterface.cs
- PenThreadPool.cs
- SchemaSetCompiler.cs
- FontInfo.cs
- Convert.cs
- CorruptStoreException.cs
- Oid.cs