Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / SchemaEntity.cs / 1305376 / SchemaEntity.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System; using System.Diagnostics; internal sealed class SchemaEntity : IDtdEntityInfo { private XmlQualifiedName qname; // Name of entity private String url; // Url for external entity (system id) private String pubid; // Pubid for external entity private String text; // Text for internal entity private XmlQualifiedName ndata = XmlQualifiedName.Empty; // NDATA identifier private int lineNumber; // line number private int linePosition; // character postion private bool isParameter; // parameter entity flag private bool isExternal; // external entity flag private bool parsingInProgress; // whether entity is being parsed (DtdParser infinite recursion check) private bool isDeclaredInExternal; // declared in external markup or not private string baseURI; private string declaredURI; // // Constructor // internal SchemaEntity(XmlQualifiedName qname, bool isParameter) { this.qname = qname; this.isParameter = isParameter; } // // IDtdEntityInfo interface // #region IDtdEntityInfo Members string IDtdEntityInfo.Name { get { return this.Name.Name; } } bool IDtdEntityInfo.IsExternal { get { return ((SchemaEntity)this).IsExternal;} } bool IDtdEntityInfo.IsDeclaredInExternal { get { return this.DeclaredInExternal; } } bool IDtdEntityInfo.IsUnparsedEntity { get { return !this.NData.IsEmpty; } } bool IDtdEntityInfo.IsParameterEntity { get { return isParameter; } } string IDtdEntityInfo.BaseUriString { get { return this.BaseURI; } } string IDtdEntityInfo.DeclaredUriString { get { return this.DeclaredURI; } } string IDtdEntityInfo.SystemId { get { return this.Url; } } string IDtdEntityInfo.PublicId { get { return this.Pubid; } } string IDtdEntityInfo.Text { get { return ((SchemaEntity)this).Text; } } int IDtdEntityInfo.LineNumber { get { return this.Line; } } int IDtdEntityInfo.LinePosition { get { return this.Pos; } } #endregion // // Internal methods and properties // #if !SILVERLIGHT internal static bool IsPredefinedEntity(String n) { return(n == "lt" || n == "gt" || n == "amp" || n == "apos" || n == "quot"); } #endif internal XmlQualifiedName Name { get { return qname; } } internal String Url { get { return url;} set { url = value; isExternal = true;} } internal String Pubid { get { return pubid;} set { pubid = value;} } internal bool IsExternal { get { return isExternal; } set { isExternal = value; } } internal bool DeclaredInExternal { get { return isDeclaredInExternal; } set { isDeclaredInExternal = value; } } internal XmlQualifiedName NData { get { return ndata;} set { ndata = value;} } internal String Text { get { return text;} set { text = value; isExternal = false;} } internal int Line { get { return lineNumber;} set { lineNumber = value;} } internal int Pos { get { return linePosition;} set { linePosition = value;} } internal String BaseURI { get { return (baseURI == null) ? String.Empty : baseURI; } set { baseURI = value; } } internal bool ParsingInProgress { get { return parsingInProgress; } set { parsingInProgress = value; } } internal String DeclaredURI { get { return (declaredURI == null) ? String.Empty : declaredURI; } set { declaredURI = value; } } }; } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System; using System.Diagnostics; internal sealed class SchemaEntity : IDtdEntityInfo { private XmlQualifiedName qname; // Name of entity private String url; // Url for external entity (system id) private String pubid; // Pubid for external entity private String text; // Text for internal entity private XmlQualifiedName ndata = XmlQualifiedName.Empty; // NDATA identifier private int lineNumber; // line number private int linePosition; // character postion private bool isParameter; // parameter entity flag private bool isExternal; // external entity flag private bool parsingInProgress; // whether entity is being parsed (DtdParser infinite recursion check) private bool isDeclaredInExternal; // declared in external markup or not private string baseURI; private string declaredURI; // // Constructor // internal SchemaEntity(XmlQualifiedName qname, bool isParameter) { this.qname = qname; this.isParameter = isParameter; } // // IDtdEntityInfo interface // #region IDtdEntityInfo Members string IDtdEntityInfo.Name { get { return this.Name.Name; } } bool IDtdEntityInfo.IsExternal { get { return ((SchemaEntity)this).IsExternal;} } bool IDtdEntityInfo.IsDeclaredInExternal { get { return this.DeclaredInExternal; } } bool IDtdEntityInfo.IsUnparsedEntity { get { return !this.NData.IsEmpty; } } bool IDtdEntityInfo.IsParameterEntity { get { return isParameter; } } string IDtdEntityInfo.BaseUriString { get { return this.BaseURI; } } string IDtdEntityInfo.DeclaredUriString { get { return this.DeclaredURI; } } string IDtdEntityInfo.SystemId { get { return this.Url; } } string IDtdEntityInfo.PublicId { get { return this.Pubid; } } string IDtdEntityInfo.Text { get { return ((SchemaEntity)this).Text; } } int IDtdEntityInfo.LineNumber { get { return this.Line; } } int IDtdEntityInfo.LinePosition { get { return this.Pos; } } #endregion // // Internal methods and properties // #if !SILVERLIGHT internal static bool IsPredefinedEntity(String n) { return(n == "lt" || n == "gt" || n == "amp" || n == "apos" || n == "quot"); } #endif internal XmlQualifiedName Name { get { return qname; } } internal String Url { get { return url;} set { url = value; isExternal = true;} } internal String Pubid { get { return pubid;} set { pubid = value;} } internal bool IsExternal { get { return isExternal; } set { isExternal = value; } } internal bool DeclaredInExternal { get { return isDeclaredInExternal; } set { isDeclaredInExternal = value; } } internal XmlQualifiedName NData { get { return ndata;} set { ndata = value;} } internal String Text { get { return text;} set { text = value; isExternal = false;} } internal int Line { get { return lineNumber;} set { lineNumber = value;} } internal int Pos { get { return linePosition;} set { linePosition = value;} } internal String BaseURI { get { return (baseURI == null) ? String.Empty : baseURI; } set { baseURI = value; } } internal bool ParsingInProgress { get { return parsingInProgress; } set { parsingInProgress = value; } } internal String DeclaredURI { get { return (declaredURI == null) ? String.Empty : declaredURI; } set { declaredURI = value; } } }; } // 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
- VoiceChangeEventArgs.cs
- ClientTarget.cs
- DesignerAdapterAttribute.cs
- AbstractDataSvcMapFileLoader.cs
- PriorityRange.cs
- FixedPageStructure.cs
- ActivityWithResult.cs
- AssemblyAssociatedContentFileAttribute.cs
- NativeCppClassAttribute.cs
- TextEditor.cs
- XPathBinder.cs
- DeclaredTypeValidator.cs
- Util.cs
- SmtpTransport.cs
- AdjustableArrowCap.cs
- ElementNotEnabledException.cs
- AuthenticationSection.cs
- MarkupCompilePass1.cs
- TextSimpleMarkerProperties.cs
- ComplexType.cs
- DbgCompiler.cs
- Control.cs
- DurationConverter.cs
- EntityClassGenerator.cs
- SamlDelegatingWriter.cs
- AdRotatorDesigner.cs
- DbConvert.cs
- VisualBrush.cs
- Facet.cs
- ToolStripContextMenu.cs
- HttpListenerElement.cs
- EventProviderWriter.cs
- XmlSchemaSet.cs
- AlphabetConverter.cs
- TypeConstant.cs
- DiscoveryClientProtocol.cs
- CodeGenerator.cs
- InfocardClientCredentials.cs
- HtmlInputImage.cs
- ProfilePropertySettings.cs
- XmlDataFileEditor.cs
- Model3DGroup.cs
- DiscreteKeyFrames.cs
- _StreamFramer.cs
- AbandonedMutexException.cs
- lengthconverter.cs
- CornerRadiusConverter.cs
- ClientUrlResolverWrapper.cs
- BitmapEffectGeneralTransform.cs
- WebExceptionStatus.cs
- InputScopeAttribute.cs
- BitmapMetadataBlob.cs
- CanonicalFontFamilyReference.cs
- Closure.cs
- ClientUIRequest.cs
- ProcessThread.cs
- SqlEnums.cs
- SafeMarshalContext.cs
- SelectionEditingBehavior.cs
- NegotiateStream.cs
- TextTreeText.cs
- _SpnDictionary.cs
- TreeNodeStyleCollectionEditor.cs
- DateBoldEvent.cs
- CharStorage.cs
- HtmlTernaryTree.cs
- WinCategoryAttribute.cs
- WebPartEventArgs.cs
- MexNamedPipeBindingElement.cs
- ReadOnlyDataSource.cs
- PixelShader.cs
- EntityTemplateFactory.cs
- Attributes.cs
- PropertyRecord.cs
- ViewKeyConstraint.cs
- CryptoApi.cs
- RelOps.cs
- DSACryptoServiceProvider.cs
- XmlArrayAttribute.cs
- PackageFilter.cs
- ObjectListSelectEventArgs.cs
- PersonalizationProvider.cs
- CodeAttributeDeclarationCollection.cs
- Range.cs
- SchemaCompiler.cs
- CmsInterop.cs
- PropertyDescriptorCollection.cs
- ContextStaticAttribute.cs
- HiddenField.cs
- Geometry3D.cs
- WebPartEditorCancelVerb.cs
- StylusPointDescription.cs
- RangeValidator.cs
- ClaimComparer.cs
- ToolStripItemTextRenderEventArgs.cs
- InlineUIContainer.cs
- DefaultBindingPropertyAttribute.cs
- HostedImpersonationContext.cs
- CustomError.cs
- ProviderSettings.cs