Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaNotation.cs / 1305376 / XmlSchemaNotation.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Xml.Serialization; ////// /// public class XmlSchemaNotation : XmlSchemaAnnotated { string name; string publicId; string systemId; XmlQualifiedName qname = XmlQualifiedName.Empty; ///[To be supplied.] ////// /// [XmlAttribute("name")] public string Name { get { return name; } set { name = value; } } ///[To be supplied.] ////// /// [XmlAttribute("public")] public string Public { get { return publicId; } set { publicId = value; } } ///[To be supplied.] ////// /// [XmlAttribute("system")] public string System { get { return systemId; } set { systemId = value; } } [XmlIgnore] internal XmlQualifiedName QualifiedName { get { return qname; } set { qname = value; } } [XmlIgnore] internal override string NameAttribute { get { return Name; } set { Name = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConnectAlgorithms.cs
- CaseInsensitiveComparer.cs
- InputReportEventArgs.cs
- AffineTransform3D.cs
- ConstraintManager.cs
- EditingCommands.cs
- RegexWriter.cs
- ScaleTransform3D.cs
- _AutoWebProxyScriptEngine.cs
- EmbeddedMailObjectsCollection.cs
- CaretElement.cs
- StrongName.cs
- ForeignKeyFactory.cs
- BaseCodePageEncoding.cs
- ReadOnlyTernaryTree.cs
- HttpListenerPrefixCollection.cs
- KnownIds.cs
- CodeChecksumPragma.cs
- ConstraintConverter.cs
- ErrorInfoXmlDocument.cs
- MarkupProperty.cs
- GeometryDrawing.cs
- Tracking.cs
- ProgressBarRenderer.cs
- DataGridViewCellParsingEventArgs.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- XmlSerializableReader.cs
- odbcmetadatafactory.cs
- FilterableAttribute.cs
- AggregationMinMaxHelpers.cs
- TextRangeEditLists.cs
- TdsParserSessionPool.cs
- DataGridCellsPresenter.cs
- PolyLineSegment.cs
- RtfControls.cs
- OpenCollectionAsyncResult.cs
- LinkedResourceCollection.cs
- HScrollBar.cs
- ZoneMembershipCondition.cs
- EditorResources.cs
- TextFormattingConverter.cs
- XamlToRtfWriter.cs
- XhtmlBasicPageAdapter.cs
- DataSvcMapFileSerializer.cs
- BinaryUtilClasses.cs
- CryptoKeySecurity.cs
- ExpressionPrefixAttribute.cs
- FormsAuthenticationModule.cs
- AutomationAttributeInfo.cs
- PolyLineSegment.cs
- CustomCategoryAttribute.cs
- SqlDataSourceSelectingEventArgs.cs
- Monitor.cs
- ResourceContainer.cs
- NetTcpSecurity.cs
- DetailsViewDeletedEventArgs.cs
- XmlQuerySequence.cs
- CharUnicodeInfo.cs
- Invariant.cs
- Empty.cs
- QueryContinueDragEventArgs.cs
- List.cs
- Parsers.cs
- TypedTableBase.cs
- StreamAsIStream.cs
- ArraySubsetEnumerator.cs
- TreeChangeInfo.cs
- RadioButton.cs
- WeakReferenceList.cs
- HttpWebRequestElement.cs
- WmiEventSink.cs
- DataRelationPropertyDescriptor.cs
- ConfigXmlText.cs
- GroupBox.cs
- Vector3D.cs
- AutoSizeToolBoxItem.cs
- NativeMethods.cs
- _ContextAwareResult.cs
- Panel.cs
- ActivityMarkupSerializer.cs
- RemoveStoryboard.cs
- RotateTransform.cs
- InputLanguageProfileNotifySink.cs
- BinarySerializer.cs
- ByteRangeDownloader.cs
- ValidationEventArgs.cs
- WebServiceTypeData.cs
- ClientData.cs
- BuildProviderUtils.cs
- SqlDataSourceEnumerator.cs
- DBCommandBuilder.cs
- IntPtr.cs
- NotConverter.cs
- FixedNode.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- TableRow.cs
- StreamUpgradeAcceptor.cs
- UnsupportedPolicyOptionsException.cs
- ChildrenQuery.cs
- TextHidden.cs