Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / SchemaNotation.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XpsFixedPageReaderWriter.cs
- SafeHandle.cs
- VisualStyleElement.cs
- EntityClientCacheEntry.cs
- ConfigurationSectionGroupCollection.cs
- UnmanagedMemoryStream.cs
- SmtpSection.cs
- FixedPageAutomationPeer.cs
- TerminatorSinks.cs
- OleDbParameter.cs
- TargetConverter.cs
- ShowExpandedMultiValueConverter.cs
- CachedBitmap.cs
- PropertyIdentifier.cs
- DefaultEvaluationContext.cs
- StorageMappingFragment.cs
- OletxTransactionHeader.cs
- ReadOnlyPermissionSet.cs
- TimeZone.cs
- DataGridSortingEventArgs.cs
- TagPrefixCollection.cs
- XmlSequenceWriter.cs
- SQLByteStorage.cs
- SiteMapNodeItem.cs
- StaticContext.cs
- DataControlField.cs
- OletxTransactionManager.cs
- DependencyPropertyChangedEventArgs.cs
- OleDbRowUpdatingEvent.cs
- OdbcConnectionFactory.cs
- RotateTransform3D.cs
- TableLayoutRowStyleCollection.cs
- AuthorizationSection.cs
- NotificationContext.cs
- counter.cs
- DataControlFieldsEditor.cs
- WebPartHelpVerb.cs
- cookie.cs
- DrawingBrush.cs
- DiscoveryReference.cs
- TextPattern.cs
- ToolbarAUtomationPeer.cs
- CodePageEncoding.cs
- ToolStripItemGlyph.cs
- NavigatorOutput.cs
- XmlDataSource.cs
- XmlAttributeAttribute.cs
- Currency.cs
- Model3DGroup.cs
- ZipIOExtraFieldZip64Element.cs
- InstallHelper.cs
- TextEditorSpelling.cs
- CodeBinaryOperatorExpression.cs
- mediaclock.cs
- WebSysDisplayNameAttribute.cs
- ServiceOperationParameter.cs
- XmlValidatingReaderImpl.cs
- SqlCacheDependencyDatabaseCollection.cs
- Validator.cs
- WebPartsPersonalization.cs
- EntityStoreSchemaGenerator.cs
- ContentElement.cs
- CallSite.cs
- DependencyObjectType.cs
- LicFileLicenseProvider.cs
- LoadRetryAsyncResult.cs
- DataContractJsonSerializer.cs
- QuotedStringWriteStateInfo.cs
- TextElement.cs
- RowToFieldTransformer.cs
- DecimalConverter.cs
- MethodToken.cs
- SingleConverter.cs
- XmlQueryType.cs
- RoutedCommand.cs
- TypeFieldSchema.cs
- ThumbAutomationPeer.cs
- _CommandStream.cs
- BooleanFunctions.cs
- LinkClickEvent.cs
- WindowsComboBox.cs
- RadioButton.cs
- DeclaredTypeValidator.cs
- ValueTypeFixupInfo.cs
- DataBindingCollection.cs
- QueryCacheManager.cs
- FileDialog.cs
- ByteAnimation.cs
- HttpCacheVary.cs
- FormsAuthenticationConfiguration.cs
- GregorianCalendarHelper.cs
- PropertyManager.cs
- Verify.cs
- GridViewRowPresenter.cs
- SourceItem.cs
- DeflateInput.cs
- EventPrivateKey.cs
- DefaultTextStoreTextComposition.cs
- ListViewCommandEventArgs.cs
- MobileSysDescriptionAttribute.cs