Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaDocumentation.cs / 1305376 / XmlSchemaDocumentation.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Collections; using System.ComponentModel; using System.Xml.Serialization; ////// /// public class XmlSchemaDocumentation : XmlSchemaObject { string source; string language; XmlNode[] markup; static XmlSchemaSimpleType languageType = DatatypeImplementation.GetSimpleTypeFromXsdType(new XmlQualifiedName("language",XmlReservedNs.NsXs)); ///[To be supplied.] ////// /// [XmlAttribute("source", DataType="anyURI")] public string Source { get { return source; } set { source = value; } } ///[To be supplied.] ////// /// [XmlAttribute("xml:lang")] public string Language { get { return language; } set { language = (string)languageType.Datatype.ParseValue(value, (XmlNameTable) null, (IXmlNamespaceResolver) null); } } ///[To be supplied.] ////// /// [XmlText(), XmlAnyElement] public XmlNode[] Markup { get { return markup; } set { markup = 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
- Int64Converter.cs
- LocatorGroup.cs
- ToolStripButton.cs
- TemplateInstanceAttribute.cs
- ValueOfAction.cs
- CodeArrayCreateExpression.cs
- Mutex.cs
- SmtpFailedRecipientsException.cs
- HtmlAnchor.cs
- PropertyTabChangedEvent.cs
- COM2Properties.cs
- ScriptReferenceBase.cs
- ParentQuery.cs
- BinaryMethodMessage.cs
- InvariantComparer.cs
- ProcessThread.cs
- UserPreferenceChangingEventArgs.cs
- QuinticEase.cs
- GeometryConverter.cs
- EntityParameterCollection.cs
- TileModeValidation.cs
- CdpEqualityComparer.cs
- SingleSelectRootGridEntry.cs
- DataGridViewTextBoxColumn.cs
- StyleXamlTreeBuilder.cs
- InProcStateClientManager.cs
- CopyOnWriteList.cs
- DropSource.cs
- FacetDescription.cs
- UnmanagedHandle.cs
- AttachedAnnotation.cs
- SQLConvert.cs
- SendMailErrorEventArgs.cs
- input.cs
- ConfigPathUtility.cs
- ConversionContext.cs
- ReliableReplySessionChannel.cs
- AssociationSetMetadata.cs
- FunctionCommandText.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- WsatServiceCertificate.cs
- ScriptingWebServicesSectionGroup.cs
- BindingListCollectionView.cs
- CodeGenHelper.cs
- _LoggingObject.cs
- SecurityDescriptor.cs
- DocumentPageHost.cs
- ContextMarshalException.cs
- TextTrailingCharacterEllipsis.cs
- ConsumerConnectionPoint.cs
- SqlDataRecord.cs
- SQLChars.cs
- NativeMethods.cs
- DesignTimeTemplateParser.cs
- AccessDataSource.cs
- WebPartAuthorizationEventArgs.cs
- Automation.cs
- MetadataHelper.cs
- BlurBitmapEffect.cs
- DataGridPageChangedEventArgs.cs
- WindowsListViewItemStartMenu.cs
- DBDataPermissionAttribute.cs
- Quaternion.cs
- MemoryPressure.cs
- ValidationHelper.cs
- DynamicRendererThreadManager.cs
- WorkflowQueue.cs
- HitTestResult.cs
- OleDbConnectionInternal.cs
- LineInfo.cs
- DataSourceXmlSerializer.cs
- RegexParser.cs
- HelpEvent.cs
- RepeaterItemEventArgs.cs
- TypeDependencyAttribute.cs
- Journaling.cs
- IIS7WorkerRequest.cs
- OperatingSystem.cs
- FixedSOMSemanticBox.cs
- UrlMapping.cs
- CharConverter.cs
- BaseResourcesBuildProvider.cs
- ClientCultureInfo.cs
- ActiveXHelper.cs
- Timer.cs
- ProxyAttribute.cs
- OutputCacheProfileCollection.cs
- DecryptRequest.cs
- HtmlImageAdapter.cs
- SegmentInfo.cs
- nulltextcontainer.cs
- WCFServiceClientProxyGenerator.cs
- DataGridViewLinkCell.cs
- BridgeDataRecord.cs
- PlainXmlSerializer.cs
- UITypeEditor.cs
- RenameRuleObjectDialog.cs
- NoPersistHandle.cs
- IItemContainerGenerator.cs
- TypeInitializationException.cs