Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // //[....] //----------------------------------------------------------------------------- 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
- CheckBoxList.cs
- EdmItemCollection.cs
- ToolStripSeparator.cs
- StdRegProviderWrapper.cs
- OdbcException.cs
- SafeFileMapViewHandle.cs
- storepermission.cs
- AutomationIdentifierGuids.cs
- ConsoleTraceListener.cs
- CmsInterop.cs
- SimpleType.cs
- GeneratedView.cs
- CodeBinaryOperatorExpression.cs
- TypeReference.cs
- ToolStripSplitButton.cs
- GetCardDetailsRequest.cs
- Size3D.cs
- ObjectNavigationPropertyMapping.cs
- DefaultParameterValueAttribute.cs
- CommonObjectSecurity.cs
- XmlDictionary.cs
- RankException.cs
- ExternalException.cs
- DbConnectionHelper.cs
- NumericUpDownAcceleration.cs
- Parallel.cs
- TypedElement.cs
- HostProtectionPermission.cs
- OleDbMetaDataFactory.cs
- WindowsListViewItemCheckBox.cs
- MSG.cs
- CompoundFileStorageReference.cs
- StylesEditorDialog.cs
- WebControlsSection.cs
- ClientUtils.cs
- DataGridClipboardHelper.cs
- XPathAncestorQuery.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- AutomationElementIdentifiers.cs
- Highlights.cs
- oledbconnectionstring.cs
- TreeNodeSelectionProcessor.cs
- mongolianshape.cs
- CheckBoxRenderer.cs
- BitmapMetadataEnumerator.cs
- ResourcePart.cs
- DynamicRenderer.cs
- ServiceBehaviorElementCollection.cs
- ContextStaticAttribute.cs
- TabOrder.cs
- SqlCrossApplyToCrossJoin.cs
- HtmlInputPassword.cs
- WebResourceAttribute.cs
- GroupItemAutomationPeer.cs
- WindowManager.cs
- IncrementalHitTester.cs
- ChildTable.cs
- PropertyStore.cs
- SpeakProgressEventArgs.cs
- PartBasedPackageProperties.cs
- WebPartConnectionsEventArgs.cs
- TableStyle.cs
- ALinqExpressionVisitor.cs
- WebPartDeleteVerb.cs
- ObjectViewListener.cs
- ISAPIRuntime.cs
- SmtpSection.cs
- IdentityNotMappedException.cs
- OptimizedTemplateContentHelper.cs
- StringSorter.cs
- MenuItemCollection.cs
- NetTcpBinding.cs
- UriExt.cs
- DataMisalignedException.cs
- CompensatableTransactionScopeActivity.cs
- Convert.cs
- ResourcesChangeInfo.cs
- RouteTable.cs
- Helper.cs
- Missing.cs
- Vector.cs
- KoreanCalendar.cs
- CodeRemoveEventStatement.cs
- RenamedEventArgs.cs
- XmlSchemaAttributeGroupRef.cs
- RightsManagementEncryptionTransform.cs
- MatrixTransform3D.cs
- TextChangedEventArgs.cs
- Vars.cs
- RemotingServices.cs
- TcpAppDomainProtocolHandler.cs
- SqlEnums.cs
- TimeSpanMinutesConverter.cs
- PointValueSerializer.cs
- WizardStepBase.cs
- TemplatedWizardStep.cs
- ValidateNames.cs
- SemaphoreSecurity.cs
- StateRuntime.cs
- DocumentViewerBase.cs