Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- XmlSchemaChoice.cs
- KeyValuePairs.cs
- XmlSchemaObjectCollection.cs
- TraceFilter.cs
- DependencyPropertyChangedEventArgs.cs
- TextBlock.cs
- LinkButton.cs
- ErrorEventArgs.cs
- SessionSymmetricTransportSecurityProtocolFactory.cs
- MonthCalendar.cs
- Int32Converter.cs
- SpecialTypeDataContract.cs
- IPipelineRuntime.cs
- XsltInput.cs
- assemblycache.cs
- CultureSpecificStringDictionary.cs
- EntityContainerEntitySetDefiningQuery.cs
- SmtpNetworkElement.cs
- CachedTypeface.cs
- XhtmlBasicValidationSummaryAdapter.cs
- DataGridViewDataErrorEventArgs.cs
- SessionStateItemCollection.cs
- CultureTableRecord.cs
- NonceCache.cs
- OracleParameter.cs
- MailDefinitionBodyFileNameEditor.cs
- Ipv6Element.cs
- Italic.cs
- ListViewGroup.cs
- XmlComment.cs
- VariantWrapper.cs
- SelectionUIService.cs
- DataGridColumn.cs
- Mutex.cs
- DataService.cs
- VirtualPath.cs
- DoubleCollectionValueSerializer.cs
- StreamingContext.cs
- KerberosTokenFactoryCredential.cs
- InputMethodStateChangeEventArgs.cs
- QueryAsyncResult.cs
- UniqueEventHelper.cs
- TextEndOfParagraph.cs
- ServerType.cs
- SafeHandles.cs
- BitmapInitialize.cs
- unsafenativemethodstextservices.cs
- SiteMapPath.cs
- PerspectiveCamera.cs
- Control.cs
- DbProviderManifest.cs
- CodeThrowExceptionStatement.cs
- TcpTransportManager.cs
- ModifierKeysValueSerializer.cs
- AutomationPatternInfo.cs
- WindowsComboBox.cs
- WebPartEventArgs.cs
- ChtmlLinkAdapter.cs
- FigureParaClient.cs
- UnsafeNativeMethodsMilCoreApi.cs
- AsynchronousChannelMergeEnumerator.cs
- Visual3D.cs
- MemoryFailPoint.cs
- SecurityTokenValidationException.cs
- InternalDispatchObject.cs
- ImageIndexEditor.cs
- ParserContext.cs
- WizardPanel.cs
- MappingException.cs
- DecoderFallback.cs
- JsonDataContract.cs
- MetadataArtifactLoaderFile.cs
- SQLInt16Storage.cs
- UrlEncodedParameterWriter.cs
- ResXResourceReader.cs
- MDIWindowDialog.cs
- XMLSchema.cs
- Win32.cs
- TemplateControl.cs
- Walker.cs
- DropAnimation.xaml.cs
- WmlCalendarAdapter.cs
- CompilerScopeManager.cs
- CodeArgumentReferenceExpression.cs
- WmpBitmapEncoder.cs
- HtmlInputFile.cs
- SmiEventSink_Default.cs
- SmtpAuthenticationManager.cs
- FlatButtonAppearance.cs
- SqlDataSourceSummaryPanel.cs
- COM2PropertyDescriptor.cs
- DocumentViewerAutomationPeer.cs
- PrintingPermissionAttribute.cs
- ApplicationGesture.cs
- BidPrivateBase.cs
- Ports.cs
- TypeForwardedToAttribute.cs
- Odbc32.cs
- JsonQueryStringConverter.cs
- EmbeddedMailObjectsCollection.cs