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
- DynamicValidatorEventArgs.cs
- TextEndOfLine.cs
- Popup.cs
- COM2ComponentEditor.cs
- FileRegion.cs
- BreakRecordTable.cs
- oledbconnectionstring.cs
- X509CertificateCollection.cs
- UnSafeCharBuffer.cs
- SQLDateTime.cs
- MediaSystem.cs
- ObjectPropertyMapping.cs
- CommandConverter.cs
- DoubleLink.cs
- SslStream.cs
- ApplicationCommands.cs
- CloseSequenceResponse.cs
- _CommandStream.cs
- RawStylusInputCustomData.cs
- MobileSysDescriptionAttribute.cs
- InvalidFilterCriteriaException.cs
- EntityDataSourceView.cs
- BookmarkScope.cs
- MouseEvent.cs
- ImagingCache.cs
- AssemblyBuilder.cs
- PropertyPathConverter.cs
- RemotingSurrogateSelector.cs
- TypeExtensionSerializer.cs
- TextElementEnumerator.cs
- SmtpReplyReader.cs
- ItemsControl.cs
- AsyncStreamReader.cs
- Parameter.cs
- PeerApplication.cs
- StylusEventArgs.cs
- Logging.cs
- PartialCachingAttribute.cs
- TextSpanModifier.cs
- FixedHighlight.cs
- LinqDataSourceHelper.cs
- EntityDataSourceWizardForm.cs
- SerializationException.cs
- GeneralTransform3DCollection.cs
- ContentDefinition.cs
- MetaData.cs
- DataGridColumn.cs
- SqlSupersetValidator.cs
- Int32RectValueSerializer.cs
- BooleanConverter.cs
- StringUtil.cs
- ImageButton.cs
- QueryCursorEventArgs.cs
- DbProviderFactoriesConfigurationHandler.cs
- ObjectDataSource.cs
- HelpKeywordAttribute.cs
- CommandField.cs
- Pointer.cs
- ContentFilePart.cs
- ColumnResult.cs
- DeviceFilterDictionary.cs
- XPathSelfQuery.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- DeclaredTypeElement.cs
- RootBrowserWindowProxy.cs
- XmlSchemaAppInfo.cs
- ViewManager.cs
- ItemAutomationPeer.cs
- listitem.cs
- CDSsyncETWBCLProvider.cs
- SqlSupersetValidator.cs
- StandardBindingOptionalReliableSessionElement.cs
- ImageListDesigner.cs
- RadioButtonFlatAdapter.cs
- ApplicationSettingsBase.cs
- PersonalizationStateInfo.cs
- DataControlReferenceCollection.cs
- _LazyAsyncResult.cs
- PropertyFilterAttribute.cs
- SmtpSection.cs
- IHttpResponseInternal.cs
- FunctionUpdateCommand.cs
- CompensateDesigner.cs
- WorkItem.cs
- DataGridDesigner.cs
- FixedDocumentPaginator.cs
- FileUtil.cs
- ChildDocumentBlock.cs
- SubpageParaClient.cs
- DirectoryLocalQuery.cs
- NodeFunctions.cs
- ClipboardData.cs
- StaticContext.cs
- HitTestParameters3D.cs
- LinqExpressionNormalizer.cs
- RPIdentityRequirement.cs
- InfoCardMasterKey.cs
- ValuePattern.cs
- ApplicationSecurityInfo.cs
- NumberFunctions.cs