Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / CompiledIdentityConstraint.cs / 1 / CompiledIdentityConstraint.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Text; using System.Collections; using System.Diagnostics; using System.Xml.XPath; using MS.Internal.Xml.XPath; internal class CompiledIdentityConstraint { internal XmlQualifiedName name = XmlQualifiedName.Empty; private ConstraintRole role; private Asttree selector; private Asttree[] fields; internal XmlQualifiedName refer = XmlQualifiedName.Empty; public enum ConstraintRole { Unique, Key, Keyref } public ConstraintRole Role { get { return this.role; } } public Asttree Selector { get { return this.selector; } } public Asttree[] Fields { get { return this.fields; } } public static readonly CompiledIdentityConstraint Empty = new CompiledIdentityConstraint(); private CompiledIdentityConstraint() {} public CompiledIdentityConstraint(XmlSchemaIdentityConstraint constraint, XmlNamespaceManager nsmgr) { this.name = constraint.QualifiedName; //public Asttree (string xPath, bool isField, XmlNamespaceManager nsmgr) try { this.selector = new Asttree(constraint.Selector.XPath, false, nsmgr); } catch (XmlSchemaException e) { e.SetSource(constraint.Selector); throw e; } XmlSchemaObjectCollection fields = constraint.Fields; Debug.Assert(fields.Count > 0); this.fields = new Asttree[fields.Count]; for(int idxField = 0; idxField < fields.Count; idxField ++) { try { this.fields[idxField] = new Asttree(((XmlSchemaXPath)fields[idxField]).XPath, true, nsmgr); } catch (XmlSchemaException e) { e.SetSource(constraint.Fields[idxField]); throw e; } } if (constraint is XmlSchemaUnique) { this.role = ConstraintRole.Unique; } else if (constraint is XmlSchemaKey) { this.role = ConstraintRole.Key; } else { // XmlSchemaKeyref this.role = ConstraintRole.Keyref; this.refer = ((XmlSchemaKeyref)constraint).Refer; } } } } // 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
- ArrayConverter.cs
- ChameleonKey.cs
- TextBoxAutoCompleteSourceConverter.cs
- ErrorLog.cs
- ArgumentNullException.cs
- AnimationClock.cs
- CompositeScriptReferenceEventArgs.cs
- Grammar.cs
- HyperLinkColumn.cs
- CacheRequest.cs
- StatusBarItemAutomationPeer.cs
- lengthconverter.cs
- _DisconnectOverlappedAsyncResult.cs
- ConnectionsZone.cs
- ResourceReader.cs
- LogLogRecord.cs
- DataGridViewComboBoxColumnDesigner.cs
- ListControl.cs
- TextBox.cs
- FaultDesigner.cs
- NotFiniteNumberException.cs
- Sentence.cs
- PointHitTestResult.cs
- DbConnectionPoolGroupProviderInfo.cs
- UncommonField.cs
- RuleSettings.cs
- GenericXmlSecurityToken.cs
- DataGridViewAdvancedBorderStyle.cs
- InputMethodStateChangeEventArgs.cs
- ObjectNotFoundException.cs
- XPathDocumentNavigator.cs
- PageCodeDomTreeGenerator.cs
- DebuggerAttributes.cs
- VisualStyleInformation.cs
- WindowsSpinner.cs
- PerformanceCounter.cs
- ServiceTimeoutsBehavior.cs
- DataContext.cs
- ImageSource.cs
- GeometryHitTestParameters.cs
- QilLoop.cs
- StateInitializationDesigner.cs
- NonSerializedAttribute.cs
- HashCodeCombiner.cs
- ClientSettingsSection.cs
- StyleSheetDesigner.cs
- SafeEventLogWriteHandle.cs
- InstanceDescriptor.cs
- UidManager.cs
- HostedHttpRequestAsyncResult.cs
- GridItemProviderWrapper.cs
- Size.cs
- UpDownBase.cs
- ThicknessAnimationUsingKeyFrames.cs
- DBConnection.cs
- DecoderFallbackWithFailureFlag.cs
- PropertyTab.cs
- SetterBaseCollection.cs
- XmlExpressionDumper.cs
- SqlDelegatedTransaction.cs
- XmlEventCache.cs
- documentsequencetextcontainer.cs
- SessionState.cs
- HandlerBase.cs
- NameTable.cs
- DynamicResourceExtensionConverter.cs
- TextServicesCompartmentContext.cs
- RegistrySecurity.cs
- WebBrowserDesigner.cs
- ResourceDefaultValueAttribute.cs
- WsdlImporterElement.cs
- XmlElementAttributes.cs
- ISFTagAndGuidCache.cs
- Compiler.cs
- WebDescriptionAttribute.cs
- PeerNameRecord.cs
- CaseKeyBox.ViewModel.cs
- TextCollapsingProperties.cs
- querybuilder.cs
- CacheMode.cs
- TypeUtil.cs
- ReadOnlyDataSource.cs
- ComponentCollection.cs
- DataGridViewUtilities.cs
- PreProcessInputEventArgs.cs
- ColorAnimation.cs
- EngineSite.cs
- ZipIORawDataFileBlock.cs
- WeakReferenceKey.cs
- UInt32Converter.cs
- ObjectDataSource.cs
- WebPartCancelEventArgs.cs
- PointCollectionConverter.cs
- Hashtable.cs
- HttpProfileGroupBase.cs
- Attribute.cs
- DispatcherProcessingDisabled.cs
- CodeExpressionCollection.cs
- ListViewTableCell.cs
- PanelDesigner.cs