Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Xml / System / Xml / schema / SchemaEntity.cs / 1 / SchemaEntity.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Schema {
using System;
using System.Diagnostics;
using System.Net;
internal sealed class SchemaEntity {
private XmlQualifiedName name; // 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 isProcessed; // whether entity is being Processed. (infinite recurrsion check)
private bool isDeclaredInExternal; // declared in external markup or not
private string baseURI;
private string declaredURI;
internal SchemaEntity(XmlQualifiedName name, bool isParameter) {
this.name = name;
this.isParameter = isParameter;
}
internal static bool IsPredefinedEntity(String n) {
return(n == "lt" ||
n == "gt" ||
n == "amp" ||
n == "apos" ||
n == "quot");
}
internal XmlQualifiedName Name {
get { return name;}
}
internal String Url {
get { return url;}
set { url = value; isExternal = true;}
}
internal String Pubid {
get { return pubid;}
set { pubid = value;}
}
internal bool IsProcessed {
get { return isProcessed;}
set { isProcessed = value;}
}
internal bool IsExternal {
get { return isExternal;}
set { isExternal = value;}
}
internal bool DeclaredInExternal {
get { return isDeclaredInExternal;}
set { isDeclaredInExternal = value;}
}
internal bool IsParEntity {
get { return isParameter;}
set { isParameter = 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 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;
using System.Net;
internal sealed class SchemaEntity {
private XmlQualifiedName name; // 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 isProcessed; // whether entity is being Processed. (infinite recurrsion check)
private bool isDeclaredInExternal; // declared in external markup or not
private string baseURI;
private string declaredURI;
internal SchemaEntity(XmlQualifiedName name, bool isParameter) {
this.name = name;
this.isParameter = isParameter;
}
internal static bool IsPredefinedEntity(String n) {
return(n == "lt" ||
n == "gt" ||
n == "amp" ||
n == "apos" ||
n == "quot");
}
internal XmlQualifiedName Name {
get { return name;}
}
internal String Url {
get { return url;}
set { url = value; isExternal = true;}
}
internal String Pubid {
get { return pubid;}
set { pubid = value;}
}
internal bool IsProcessed {
get { return isProcessed;}
set { isProcessed = value;}
}
internal bool IsExternal {
get { return isExternal;}
set { isExternal = value;}
}
internal bool DeclaredInExternal {
get { return isDeclaredInExternal;}
set { isDeclaredInExternal = value;}
}
internal bool IsParEntity {
get { return isParameter;}
set { isParameter = 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 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
- altserialization.cs
- CodeAttributeDeclarationCollection.cs
- FieldAccessException.cs
- PerfCounters.cs
- Parsers.cs
- GroupBoxRenderer.cs
- TableProvider.cs
- PrePrepareMethodAttribute.cs
- DataTable.cs
- AdRotator.cs
- GridViewUpdatedEventArgs.cs
- ImageSource.cs
- ServiceManagerHandle.cs
- HashStream.cs
- ListSortDescriptionCollection.cs
- ScriptingJsonSerializationSection.cs
- SQLStringStorage.cs
- DataSourceXmlTextReader.cs
- SocketAddress.cs
- RectKeyFrameCollection.cs
- UnsafeNativeMethods.cs
- ManualWorkflowSchedulerService.cs
- MultiView.cs
- NativeMethods.cs
- PolicyException.cs
- CompoundFileStorageReference.cs
- DBCSCodePageEncoding.cs
- ContextMenu.cs
- TrustDriver.cs
- PassportAuthenticationModule.cs
- TextEncodedRawTextWriter.cs
- ExceptionAggregator.cs
- SqlConnectionStringBuilder.cs
- FormViewPagerRow.cs
- XmlBinaryReader.cs
- SchemaImporter.cs
- PathNode.cs
- ToolboxItemFilterAttribute.cs
- XmlSerializerVersionAttribute.cs
- SendSecurityHeaderElement.cs
- PlanCompiler.cs
- ExpressionNode.cs
- PolicyImporterElement.cs
- UTF8Encoding.cs
- XmlSchemaObject.cs
- SharedDp.cs
- XmlSchemaType.cs
- DataGridViewTextBoxEditingControl.cs
- WindowsListViewScroll.cs
- ProcessRequestArgs.cs
- BinaryObjectInfo.cs
- SqlPersonalizationProvider.cs
- WorkflowWebService.cs
- ConfigViewGenerator.cs
- BufferedStream.cs
- QilLiteral.cs
- HttpCapabilitiesEvaluator.cs
- ImageBrush.cs
- AlphabetConverter.cs
- CheckBox.cs
- DefaultAssemblyResolver.cs
- AxImporter.cs
- EmptyEnumerable.cs
- cookiecollection.cs
- XmlException.cs
- EventDescriptor.cs
- SqlReferenceCollection.cs
- ProtectedConfigurationSection.cs
- RewritingPass.cs
- Latin1Encoding.cs
- WebResourceAttribute.cs
- SoapAttributeAttribute.cs
- ZipIOModeEnforcingStream.cs
- EncoderBestFitFallback.cs
- TypeListConverter.cs
- WebSysDescriptionAttribute.cs
- ByeMessageCD1.cs
- FunctionImportElement.cs
- SystemKeyConverter.cs
- MappingMetadataHelper.cs
- SecurityVerifiedMessage.cs
- ViewGenResults.cs
- EnumerableWrapperWeakToStrong.cs
- StringReader.cs
- ServiceBusyException.cs
- KeyProperty.cs
- ModelToObjectValueConverter.cs
- GridViewRowEventArgs.cs
- QueryReaderSettings.cs
- TransactionsSectionGroup.cs
- UTF32Encoding.cs
- DateTimePicker.cs
- FloatUtil.cs
- ExcludePathInfo.cs
- IIS7WorkerRequest.cs
- NavigationFailedEventArgs.cs
- HostDesigntimeLicenseContext.cs
- InvokeBase.cs
- OrCondition.cs
- SafeBuffer.cs