Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / CompiledIdentityConstraint.cs / 1305376 / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- JsonFormatGeneratorStatics.cs
- XslCompiledTransform.cs
- DocumentGridContextMenu.cs
- SmtpSection.cs
- ConfigXmlWhitespace.cs
- UnsafeNativeMethodsTablet.cs
- WinCategoryAttribute.cs
- TimeSpanConverter.cs
- SettingsPropertyIsReadOnlyException.cs
- HtmlAnchor.cs
- ReadOnlyDataSourceView.cs
- FormViewActionList.cs
- CardSpaceSelector.cs
- PnrpPermission.cs
- Confirm.cs
- InputProviderSite.cs
- ConditionalAttribute.cs
- EditableTreeList.cs
- AssemblyAttributes.cs
- XPathArrayIterator.cs
- OleDbCommandBuilder.cs
- ToolStripCodeDomSerializer.cs
- CheckBoxField.cs
- webproxy.cs
- WebPartDisplayMode.cs
- DataPager.cs
- ListViewItem.cs
- RequestQueryProcessor.cs
- DataKey.cs
- FrameworkElement.cs
- Track.cs
- RowBinding.cs
- StyleCollectionEditor.cs
- XmlNodeChangedEventManager.cs
- ErrorHandler.cs
- ToolStripOverflow.cs
- Action.cs
- ArraySegment.cs
- HtmlMeta.cs
- XmlDictionaryString.cs
- BasicKeyConstraint.cs
- InplaceBitmapMetadataWriter.cs
- ApplicationFileParser.cs
- BufferedStream.cs
- ImageFormatConverter.cs
- SystemFonts.cs
- SamlSecurityToken.cs
- Highlights.cs
- XmlAtomicValue.cs
- HttpServerUtilityWrapper.cs
- VirtualDirectoryMappingCollection.cs
- Vector3DValueSerializer.cs
- ConfigurationLoaderException.cs
- ComboBoxItem.cs
- OSFeature.cs
- ThreadExceptionDialog.cs
- ControlIdConverter.cs
- ResXResourceSet.cs
- VolatileEnlistmentMultiplexing.cs
- BaseDataBoundControl.cs
- ReadOnlyAttribute.cs
- DecimalFormatter.cs
- NotificationContext.cs
- CounterCreationData.cs
- CombinedGeometry.cs
- DataGridRowAutomationPeer.cs
- EmptyEnumerable.cs
- DefaultAuthorizationContext.cs
- WorkflowWebHostingModule.cs
- AnnotationObservableCollection.cs
- SHA512.cs
- CqlParserHelpers.cs
- SmtpFailedRecipientsException.cs
- TypeExtension.cs
- ReadingWritingEntityEventArgs.cs
- Calendar.cs
- DbModificationCommandTree.cs
- ContextStaticAttribute.cs
- EdmValidator.cs
- DefaultValueAttribute.cs
- EpmTargetTree.cs
- DataKeyCollection.cs
- DrawListViewSubItemEventArgs.cs
- JoinSymbol.cs
- CodeSpit.cs
- RIPEMD160.cs
- ListDictionaryInternal.cs
- ContextActivityUtils.cs
- ActivityWithResultValueSerializer.cs
- Vector3D.cs
- TransformerInfoCollection.cs
- SystemFonts.cs
- IUnknownConstantAttribute.cs
- TaskFormBase.cs
- HtmlWindow.cs
- SchemaImporterExtensionsSection.cs
- TypefaceMap.cs
- StreamGeometryContext.cs
- DelimitedListTraceListener.cs
- NamespaceEmitter.cs