Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MLangCodePageEncoding.cs
- FileClassifier.cs
- PropertyGridEditorPart.cs
- XmlChildNodes.cs
- Semaphore.cs
- AddIn.cs
- XmlAggregates.cs
- XmlSerializerSection.cs
- HitTestWithPointDrawingContextWalker.cs
- DataSourceDescriptorCollection.cs
- NumericUpDownAccelerationCollection.cs
- OneToOneMappingSerializer.cs
- Comparer.cs
- Matrix3DConverter.cs
- ToggleButton.cs
- PipelineModuleStepContainer.cs
- LayoutEngine.cs
- EventLogSession.cs
- ToolStrip.cs
- RemoteWebConfigurationHostStream.cs
- Win32SafeHandles.cs
- DisableDpiAwarenessAttribute.cs
- Focus.cs
- CommandField.cs
- IssuedTokenParametersElement.cs
- FolderBrowserDialog.cs
- SqlRecordBuffer.cs
- Vector3DIndependentAnimationStorage.cs
- DateTimeFormat.cs
- MsdtcWrapper.cs
- SHA256Cng.cs
- StorageScalarPropertyMapping.cs
- KeyboardEventArgs.cs
- ParameterDataSourceExpression.cs
- WindowsIdentity.cs
- GACIdentityPermission.cs
- ExpressionParser.cs
- Panel.cs
- Converter.cs
- MetabaseServerConfig.cs
- ArgumentsParser.cs
- VerbConverter.cs
- TextEffectCollection.cs
- XmlDocumentSerializer.cs
- SEHException.cs
- TableLayoutStyleCollection.cs
- HtmlInputRadioButton.cs
- InlineUIContainer.cs
- Visitors.cs
- MutexSecurity.cs
- Environment.cs
- OperationResponse.cs
- KeyFrames.cs
- KnownTypeDataContractResolver.cs
- CodeDOMProvider.cs
- FieldNameLookup.cs
- MessageSecurityProtocolFactory.cs
- Annotation.cs
- DesignerExtenders.cs
- SiteMapDataSource.cs
- NativeRecognizer.cs
- ToolStripItemCollection.cs
- AudioSignalProblemOccurredEventArgs.cs
- WebConfigurationFileMap.cs
- ProfilePropertySettings.cs
- TypeNameConverter.cs
- CqlLexer.cs
- SettingsSection.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- QilUnary.cs
- SQLString.cs
- RelationshipEnd.cs
- ToolStripOverflow.cs
- DesignerValidatorAdapter.cs
- TypedTableHandler.cs
- Propagator.Evaluator.cs
- SchemaEntity.cs
- AttributeTable.cs
- Converter.cs
- DbDataRecord.cs
- UriWriter.cs
- Odbc32.cs
- RadialGradientBrush.cs
- SqlDataSourceSelectingEventArgs.cs
- StringAnimationBase.cs
- ThemeInfoAttribute.cs
- SmiSettersStream.cs
- SecurityContext.cs
- figurelength.cs
- AttachedPropertyBrowsableAttribute.cs
- SortAction.cs
- TaskForm.cs
- PeerMaintainer.cs
- PropertyPushdownHelper.cs
- NativeRightsManagementAPIsStructures.cs
- DataGridViewColumnHeaderCell.cs
- DataGridViewToolTip.cs
- JournalEntryListConverter.cs
- XPathParser.cs
- SafeRegistryHandle.cs