Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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
- KnownTypesHelper.cs
- Image.cs
- TextServicesCompartmentEventSink.cs
- DataBindingsDialog.cs
- WsatServiceAddress.cs
- SqlDeflator.cs
- NavigatingCancelEventArgs.cs
- PromptBuilder.cs
- controlskin.cs
- StylusButtonEventArgs.cs
- SchemaImporter.cs
- PackageDigitalSignatureManager.cs
- ScrollData.cs
- IArgumentProvider.cs
- Popup.cs
- ChannelCredentials.cs
- ObjectQuery.cs
- CodeSpit.cs
- ClientApiGenerator.cs
- PnrpPermission.cs
- StateChangeEvent.cs
- FileIOPermission.cs
- MissingManifestResourceException.cs
- CssClassPropertyAttribute.cs
- XmlHierarchyData.cs
- WebPartsPersonalizationAuthorization.cs
- DataViewSetting.cs
- Parameter.cs
- ProviderCommandInfoUtils.cs
- ResourcePart.cs
- XmlSchemaType.cs
- ObjectTag.cs
- InternalDispatchObject.cs
- HtmlInputHidden.cs
- PixelFormatConverter.cs
- RootNamespaceAttribute.cs
- XmlDataLoader.cs
- MemberRelationshipService.cs
- FrameAutomationPeer.cs
- PerformanceCounterLib.cs
- SpellCheck.cs
- DetailsViewPagerRow.cs
- FormsAuthenticationCredentials.cs
- MsmqReceiveHelper.cs
- EdmComplexTypeAttribute.cs
- UnmanagedBitmapWrapper.cs
- ReadContentAsBinaryHelper.cs
- LockedBorderGlyph.cs
- Action.cs
- StyleCollection.cs
- Assert.cs
- GPPOINT.cs
- ChangeBlockUndoRecord.cs
- Point3D.cs
- XmlSchemaCollection.cs
- documentsequencetextcontainer.cs
- NaturalLanguageHyphenator.cs
- TableCellCollection.cs
- Point4DValueSerializer.cs
- SequentialWorkflowRootDesigner.cs
- SystemUdpStatistics.cs
- DecimalConverter.cs
- HwndSource.cs
- OpenFileDialog.cs
- ZoneLinkButton.cs
- InvalidProgramException.cs
- ExceptionUtility.cs
- TryCatch.cs
- DataListComponentEditor.cs
- PolyQuadraticBezierSegment.cs
- DataGridTableCollection.cs
- GeneralTransform3DGroup.cs
- Timer.cs
- CacheRequest.cs
- DataGridCaption.cs
- SystemIPAddressInformation.cs
- WindowsScrollBar.cs
- ChangePassword.cs
- OpacityConverter.cs
- WorkflowApplicationAbortedException.cs
- RangeValidator.cs
- HttpClientCertificate.cs
- listitem.cs
- WsatServiceCertificate.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- ValidationError.cs
- ElementMarkupObject.cs
- InfoCardRSACryptoProvider.cs
- WindowShowOrOpenTracker.cs
- RectAnimationBase.cs
- PopupEventArgs.cs
- loginstatus.cs
- TextTreeRootTextBlock.cs
- QilBinary.cs
- LogicalExpr.cs
- SafeNativeMethods.cs
- MobileSysDescriptionAttribute.cs
- EditingMode.cs
- LayoutInformation.cs
- SystemSounds.cs