Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / SchemaNotation.cs / 1305376 / SchemaNotation.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System; using System.Diagnostics; internal sealed class SchemaNotation { internal const int SYSTEM = 0; internal const int PUBLIC = 1; private XmlQualifiedName name; private String systemLiteral; // System literal private String pubid; // pubid literal internal SchemaNotation(XmlQualifiedName name) { this.name = name; } internal XmlQualifiedName Name { get { return name;} } internal String SystemLiteral { get { return systemLiteral;} set { systemLiteral = value;} } internal String Pubid { get { return pubid;} set { pubid = 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
- Decoder.cs
- OnOperation.cs
- DirectoryGroupQuery.cs
- XmlNamedNodeMap.cs
- Environment.cs
- TextBreakpoint.cs
- FillRuleValidation.cs
- XPathDocumentBuilder.cs
- DetailsViewDeleteEventArgs.cs
- FixedSOMTableRow.cs
- URLAttribute.cs
- IPHostEntry.cs
- AggregatePushdown.cs
- DesignConnectionCollection.cs
- ListMarkerLine.cs
- GridItemCollection.cs
- ComplexLine.cs
- DeferredElementTreeState.cs
- MonthCalendar.cs
- WorkflowExecutor.cs
- XPathArrayIterator.cs
- Empty.cs
- webeventbuffer.cs
- BaseCollection.cs
- login.cs
- ToolStripItem.cs
- Rectangle.cs
- EFColumnProvider.cs
- FlowDocumentReader.cs
- ToolStripSplitStackLayout.cs
- StringComparer.cs
- DateTimeConstantAttribute.cs
- BamlStream.cs
- CreateUserWizardStep.cs
- Win32SafeHandles.cs
- StoreItemCollection.cs
- XmlNodeReader.cs
- AttributeSetAction.cs
- StateMachineHistory.cs
- Composition.cs
- ControlDesigner.cs
- URLIdentityPermission.cs
- EditorZone.cs
- ChangePasswordAutoFormat.cs
- SoapDocumentMethodAttribute.cs
- XamlToRtfWriter.cs
- CssClassPropertyAttribute.cs
- DrawingDrawingContext.cs
- DesignerOptionService.cs
- LiteralTextContainerControlBuilder.cs
- CssTextWriter.cs
- IconEditor.cs
- TableRow.cs
- ButtonChrome.cs
- HGlobalSafeHandle.cs
- RequiredFieldValidator.cs
- WebMethodAttribute.cs
- WebResponse.cs
- LabelLiteral.cs
- SkipStoryboardToFill.cs
- Utilities.cs
- SaveFileDialogDesigner.cs
- ControlEvent.cs
- HtmlTableCellCollection.cs
- CodeConditionStatement.cs
- UnsafeNativeMethods.cs
- PolicyStatement.cs
- FontFamilyValueSerializer.cs
- TextFormatter.cs
- PageContentAsyncResult.cs
- TrackingServices.cs
- CompModSwitches.cs
- XmlSchemaAll.cs
- SafeNativeMethodsCLR.cs
- CaseExpr.cs
- TextTreeRootNode.cs
- SuppressMergeCheckAttribute.cs
- ClipboardData.cs
- _SpnDictionary.cs
- XmlSchemaAnyAttribute.cs
- SettingsBase.cs
- SqlDataSourceEnumerator.cs
- AssemblyAttributes.cs
- XmlUtf8RawTextWriter.cs
- Dynamic.cs
- ToggleProviderWrapper.cs
- UnmanagedMarshal.cs
- BrowserInteropHelper.cs
- IdleTimeoutMonitor.cs
- UnSafeCharBuffer.cs
- UserControlParser.cs
- SynchronizationLockException.cs
- IteratorFilter.cs
- HtmlValidatorAdapter.cs
- SynchronizationContext.cs
- BulletedListEventArgs.cs
- CommentEmitter.cs
- HashUtility.cs
- FontStretches.cs
- DateTimeAutomationPeer.cs