Code:
/ DotNET / DotNET / 8.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
- EditorPartChrome.cs
- GeneralTransformGroup.cs
- MimeMapping.cs
- DataShape.cs
- SafeWaitHandle.cs
- MetadataProperty.cs
- PeerConnector.cs
- ApplicationInfo.cs
- DataGridViewCellValidatingEventArgs.cs
- Duration.cs
- InputLanguageCollection.cs
- DataBinding.cs
- SerializationSectionGroup.cs
- ServiceObjectContainer.cs
- ExtentKey.cs
- TextEditorParagraphs.cs
- ECDiffieHellmanCngPublicKey.cs
- ping.cs
- FormView.cs
- PixelFormatConverter.cs
- SharedConnectionInfo.cs
- EndPoint.cs
- MailWriter.cs
- IndexedString.cs
- XmlNamedNodeMap.cs
- RegexRunner.cs
- TypeDescriptionProviderAttribute.cs
- ComAdminInterfaces.cs
- TypeBuilderInstantiation.cs
- Error.cs
- BulletChrome.cs
- MissingMethodException.cs
- EntityClassGenerator.cs
- FixedSOMElement.cs
- BackgroundFormatInfo.cs
- EncryptedData.cs
- RemotingServices.cs
- NetPeerTcpBindingElement.cs
- UIAgentAsyncBeginRequest.cs
- COM2IDispatchConverter.cs
- SecurityStateEncoder.cs
- DbException.cs
- BindingContext.cs
- ScriptControlManager.cs
- PageAsyncTaskManager.cs
- CodeExpressionCollection.cs
- ModuleBuilderData.cs
- ChtmlTextBoxAdapter.cs
- ClientReliableChannelBinder.cs
- nulltextnavigator.cs
- Label.cs
- SequenceDesignerAccessibleObject.cs
- RectangleHotSpot.cs
- GPPOINTF.cs
- TokenBasedSetEnumerator.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- XmlILOptimizerVisitor.cs
- UriExt.cs
- StringUtil.cs
- SqlParameter.cs
- BitmapFrame.cs
- XslNumber.cs
- RuleAttributes.cs
- SiteMapNodeItemEventArgs.cs
- ContainerSelectorGlyph.cs
- NavigateEvent.cs
- SelectionGlyph.cs
- MultiBindingExpression.cs
- ConfigViewGenerator.cs
- DeriveBytes.cs
- TemplateComponentConnector.cs
- WindowsPrincipal.cs
- SqlXmlStorage.cs
- BindingOperations.cs
- ObjectItemCollection.cs
- DependencyObjectType.cs
- Lease.cs
- WorkflowDispatchContext.cs
- CipherData.cs
- HighlightVisual.cs
- GlyphRunDrawing.cs
- ObjectDataSourceChooseMethodsPanel.cs
- ServiceModelConfigurationElementCollection.cs
- SerTrace.cs
- Wildcard.cs
- ContentPathSegment.cs
- StorageComplexPropertyMapping.cs
- LookupBindingPropertiesAttribute.cs
- DataGridTextBoxColumn.cs
- AttributeCollection.cs
- DataObjectFieldAttribute.cs
- ToolStripPanelRenderEventArgs.cs
- URLMembershipCondition.cs
- DragCompletedEventArgs.cs
- Queue.cs
- MsmqHostedTransportManager.cs
- TileBrush.cs
- DataView.cs
- NoneExcludedImageIndexConverter.cs
- TableRowGroup.cs