Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaIdentityConstraint.cs / 1305376 / XmlSchemaIdentityConstraint.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Collections; using System.ComponentModel; using System.Xml.Serialization; ////// /// public class XmlSchemaIdentityConstraint : XmlSchemaAnnotated { string name; XmlSchemaXPath selector; XmlSchemaObjectCollection fields = new XmlSchemaObjectCollection(); XmlQualifiedName qualifiedName = XmlQualifiedName.Empty; CompiledIdentityConstraint compiledConstraint = null; ///[To be supplied.] ////// /// [XmlAttribute("name")] public string Name { get { return name; } set { name = value; } } ///[To be supplied.] ////// /// [XmlElement("selector", typeof(XmlSchemaXPath))] public XmlSchemaXPath Selector { get { return selector; } set { selector = value; } } ///[To be supplied.] ////// /// [XmlElement("field", typeof(XmlSchemaXPath))] public XmlSchemaObjectCollection Fields { get { return fields; } } ///[To be supplied.] ////// /// [XmlIgnore] public XmlQualifiedName QualifiedName { get { return qualifiedName; } } internal void SetQualifiedName(XmlQualifiedName value) { qualifiedName = value; } [XmlIgnore] internal CompiledIdentityConstraint CompiledConstraint { get { return compiledConstraint; } set { compiledConstraint = value; } } [XmlIgnore] internal override string NameAttribute { get { return Name; } set { Name = value; } } } ///[To be supplied.] ////// /// public class XmlSchemaXPath : XmlSchemaAnnotated { string xpath; ///[To be supplied.] ////// /// [XmlAttribute("xpath"), DefaultValue("")] public string XPath { get { return xpath; } set { xpath = value; } } } ///[To be supplied.] ////// /// public class XmlSchemaUnique : XmlSchemaIdentityConstraint { } ///[To be supplied.] ////// /// public class XmlSchemaKey : XmlSchemaIdentityConstraint { } ///[To be supplied.] ////// /// public class XmlSchemaKeyref : XmlSchemaIdentityConstraint { XmlQualifiedName refer = XmlQualifiedName.Empty; ///[To be supplied.] ////// /// [XmlAttribute("refer")] public XmlQualifiedName Refer { get { return refer; } set { refer = (value == null ? XmlQualifiedName.Empty : value); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Collections; using System.ComponentModel; using System.Xml.Serialization; ////// /// public class XmlSchemaIdentityConstraint : XmlSchemaAnnotated { string name; XmlSchemaXPath selector; XmlSchemaObjectCollection fields = new XmlSchemaObjectCollection(); XmlQualifiedName qualifiedName = XmlQualifiedName.Empty; CompiledIdentityConstraint compiledConstraint = null; ///[To be supplied.] ////// /// [XmlAttribute("name")] public string Name { get { return name; } set { name = value; } } ///[To be supplied.] ////// /// [XmlElement("selector", typeof(XmlSchemaXPath))] public XmlSchemaXPath Selector { get { return selector; } set { selector = value; } } ///[To be supplied.] ////// /// [XmlElement("field", typeof(XmlSchemaXPath))] public XmlSchemaObjectCollection Fields { get { return fields; } } ///[To be supplied.] ////// /// [XmlIgnore] public XmlQualifiedName QualifiedName { get { return qualifiedName; } } internal void SetQualifiedName(XmlQualifiedName value) { qualifiedName = value; } [XmlIgnore] internal CompiledIdentityConstraint CompiledConstraint { get { return compiledConstraint; } set { compiledConstraint = value; } } [XmlIgnore] internal override string NameAttribute { get { return Name; } set { Name = value; } } } ///[To be supplied.] ////// /// public class XmlSchemaXPath : XmlSchemaAnnotated { string xpath; ///[To be supplied.] ////// /// [XmlAttribute("xpath"), DefaultValue("")] public string XPath { get { return xpath; } set { xpath = value; } } } ///[To be supplied.] ////// /// public class XmlSchemaUnique : XmlSchemaIdentityConstraint { } ///[To be supplied.] ////// /// public class XmlSchemaKey : XmlSchemaIdentityConstraint { } ///[To be supplied.] ////// /// public class XmlSchemaKeyref : XmlSchemaIdentityConstraint { XmlQualifiedName refer = XmlQualifiedName.Empty; ///[To be supplied.] ////// /// [XmlAttribute("refer")] public XmlQualifiedName Refer { get { return refer; } set { refer = (value == null ? XmlQualifiedName.Empty : 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
- XmlImplementation.cs
- SecurityContext.cs
- AttachedPropertyBrowsableAttribute.cs
- DbQueryCommandTree.cs
- DiffuseMaterial.cs
- SvcFileManager.cs
- IndentTextWriter.cs
- ProxyWebPart.cs
- WebPartTransformer.cs
- xmlformatgeneratorstatics.cs
- WindowsListViewItemCheckBox.cs
- ReadOnlyCollection.cs
- DetailsView.cs
- HtmlInputButton.cs
- SystemInfo.cs
- BoundingRectTracker.cs
- ApplicationCommands.cs
- ToolBarTray.cs
- ListViewGroupConverter.cs
- GridItemCollection.cs
- Annotation.cs
- NonVisualControlAttribute.cs
- HandlerMappingMemo.cs
- WebRequestModuleElementCollection.cs
- HttpRuntimeSection.cs
- NextPreviousPagerField.cs
- MarginsConverter.cs
- SourceChangedEventArgs.cs
- RangeValueProviderWrapper.cs
- BasicCellRelation.cs
- MarkupProperty.cs
- Brushes.cs
- StagingAreaInputItem.cs
- PreservationFileReader.cs
- GeneralTransform3DGroup.cs
- PreviewKeyDownEventArgs.cs
- ReflectEventDescriptor.cs
- GeneralTransform2DTo3DTo2D.cs
- NetCodeGroup.cs
- CancellationTokenSource.cs
- SortKey.cs
- SQLBytesStorage.cs
- _BaseOverlappedAsyncResult.cs
- DbProviderFactoriesConfigurationHandler.cs
- DesignerPerfEventProvider.cs
- CellParaClient.cs
- PolygonHotSpot.cs
- UriTemplateTrieNode.cs
- ThreadNeutralSemaphore.cs
- EventTask.cs
- FormsAuthenticationEventArgs.cs
- BindUriHelper.cs
- RequestQueryParser.cs
- CookieHandler.cs
- MediaEntryAttribute.cs
- HttpApplicationFactory.cs
- SimpleApplicationHost.cs
- Block.cs
- HMACSHA512.cs
- QueryPageSettingsEventArgs.cs
- InternalRelationshipCollection.cs
- ToolTipService.cs
- CompiledELinqQueryState.cs
- CorrelationManager.cs
- AQNBuilder.cs
- COSERVERINFO.cs
- PanelContainerDesigner.cs
- HostingPreferredMapPath.cs
- Argument.cs
- ToolTipAutomationPeer.cs
- XmlBinaryReader.cs
- Claim.cs
- DesignTimeSiteMapProvider.cs
- AsymmetricKeyExchangeFormatter.cs
- ListBoxAutomationPeer.cs
- SHA384Cng.cs
- PathGradientBrush.cs
- Hashtable.cs
- VirtualStackFrame.cs
- DbInsertCommandTree.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- ThreadAttributes.cs
- TextProviderWrapper.cs
- FunctionNode.cs
- Parallel.cs
- MarkupWriter.cs
- FigureHelper.cs
- CodeComment.cs
- ExceptionValidationRule.cs
- RowTypePropertyElement.cs
- ActivitySurrogate.cs
- TypedRowGenerator.cs
- IPAddressCollection.cs
- RepeatInfo.cs
- TableLayoutPanelResizeGlyph.cs
- RelatedView.cs
- ToolStripLocationCancelEventArgs.cs
- _NegoState.cs
- BitStream.cs
- CacheModeConverter.cs