Code:
/ FX-1434 / FX-1434 / 1.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
- DataGridViewCheckBoxCell.cs
- DoubleLinkListEnumerator.cs
- TypeBuilderInstantiation.cs
- MemberHolder.cs
- ComponentDesigner.cs
- Metafile.cs
- bidPrivateBase.cs
- RuleElement.cs
- smtppermission.cs
- FeatureAttribute.cs
- QueryReaderSettings.cs
- HMACSHA512.cs
- SignatureHelper.cs
- ManagedWndProcTracker.cs
- LocatorPartList.cs
- MergeFailedEvent.cs
- DefaultProxySection.cs
- PopOutPanel.cs
- RelationshipEndMember.cs
- VerificationAttribute.cs
- MsmqActivation.cs
- WebConfigurationHost.cs
- OleDbErrorCollection.cs
- TakeQueryOptionExpression.cs
- ReverseQueryOperator.cs
- CollectionConverter.cs
- TraceSwitch.cs
- Int64.cs
- ParameterElementCollection.cs
- CursorConverter.cs
- InkCanvas.cs
- WebControl.cs
- DoubleStorage.cs
- CloseCollectionAsyncResult.cs
- QueueProcessor.cs
- DrawItemEvent.cs
- StreamGeometry.cs
- RenderOptions.cs
- ChangeConflicts.cs
- ToolStripPanel.cs
- FileStream.cs
- SqlCommandBuilder.cs
- URL.cs
- CompiledELinqQueryState.cs
- DnsPermission.cs
- GuidelineSet.cs
- StructuredProperty.cs
- DSASignatureDeformatter.cs
- TemplateBindingExpressionConverter.cs
- GenericIdentity.cs
- DataGridRowDetailsEventArgs.cs
- GridItem.cs
- HuffmanTree.cs
- COMException.cs
- Renderer.cs
- QilLoop.cs
- SequenceNumber.cs
- GeometryValueSerializer.cs
- COM2PropertyDescriptor.cs
- BamlLocalizationDictionary.cs
- Content.cs
- SQLDateTimeStorage.cs
- HtmlAnchor.cs
- BlurEffect.cs
- EventLogPermissionAttribute.cs
- DiffuseMaterial.cs
- ImageDrawing.cs
- Pair.cs
- Ray3DHitTestResult.cs
- EnumType.cs
- RenderData.cs
- ManagedFilter.cs
- SqlStream.cs
- BitmapScalingModeValidation.cs
- HostingEnvironmentException.cs
- WithParamAction.cs
- DeclaredTypeValidator.cs
- FileAuthorizationModule.cs
- PreProcessInputEventArgs.cs
- SqlDelegatedTransaction.cs
- CompositeFontInfo.cs
- DebugManager.cs
- OrderedHashRepartitionEnumerator.cs
- Zone.cs
- MessageQueueAccessControlEntry.cs
- ProtocolsConfiguration.cs
- DeclaredTypeValidatorAttribute.cs
- TypefaceMetricsCache.cs
- Pen.cs
- WorkflowItemPresenter.cs
- CngKeyCreationParameters.cs
- Unit.cs
- JournalEntryListConverter.cs
- ObjectViewListener.cs
- NamespaceQuery.cs
- MetadataSource.cs
- StorageAssociationSetMapping.cs
- DbgUtil.cs
- CorrelationActionMessageFilter.cs
- ConsoleCancelEventArgs.cs