Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaIdentityConstraint.cs / 1305376 / XmlSchemaIdentityConstraint.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Collections; using System.ComponentModel; using System.Xml.Serialization; ////// /// public class XmlSchemaIdentityConstraint : XmlSchemaAnnotated { string name; XmlSchemaXPath selector; XmlSchemaObjectCollection fields = new XmlSchemaObjectCollection(); XmlQualifiedName qualifiedName = XmlQualifiedName.Empty; CompiledIdentityConstraint compiledConstraint = null; ///[To be supplied.] ////// /// [XmlAttribute("name")] public string Name { get { return name; } set { name = value; } } ///[To be supplied.] ////// /// [XmlElement("selector", typeof(XmlSchemaXPath))] public XmlSchemaXPath Selector { get { return selector; } set { selector = value; } } ///[To be supplied.] ////// /// [XmlElement("field", typeof(XmlSchemaXPath))] public XmlSchemaObjectCollection Fields { get { return fields; } } ///[To be supplied.] ////// /// [XmlIgnore] public XmlQualifiedName QualifiedName { get { return qualifiedName; } } internal void SetQualifiedName(XmlQualifiedName value) { qualifiedName = value; } [XmlIgnore] internal CompiledIdentityConstraint CompiledConstraint { get { return compiledConstraint; } set { compiledConstraint = value; } } [XmlIgnore] internal override string NameAttribute { get { return Name; } set { Name = value; } } } ///[To be supplied.] ////// /// public class XmlSchemaXPath : XmlSchemaAnnotated { string xpath; ///[To be supplied.] ////// /// [XmlAttribute("xpath"), DefaultValue("")] public string XPath { get { return xpath; } set { xpath = value; } } } ///[To be supplied.] ////// /// public class XmlSchemaUnique : XmlSchemaIdentityConstraint { } ///[To be supplied.] ////// /// public class XmlSchemaKey : XmlSchemaIdentityConstraint { } ///[To be supplied.] ////// /// public class XmlSchemaKeyref : XmlSchemaIdentityConstraint { XmlQualifiedName refer = XmlQualifiedName.Empty; ///[To be supplied.] ////// /// [XmlAttribute("refer")] public XmlQualifiedName Refer { get { return refer; } set { refer = (value == null ? XmlQualifiedName.Empty : value); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListBoxItemAutomationPeer.cs
- ActiveXHelper.cs
- DataColumnPropertyDescriptor.cs
- CodeVariableReferenceExpression.cs
- TreeNodeStyle.cs
- CreateParams.cs
- SystemMulticastIPAddressInformation.cs
- DetailsViewRow.cs
- OrderedDictionary.cs
- RelAssertionDirectKeyIdentifierClause.cs
- SmiRequestExecutor.cs
- PrimitiveSchema.cs
- ParamArrayAttribute.cs
- MultiSelectRootGridEntry.cs
- NativeMethods.cs
- _BasicClient.cs
- SystemParameters.cs
- Zone.cs
- TableProviderWrapper.cs
- ListQueryResults.cs
- ViewSimplifier.cs
- SecurityTokenInclusionMode.cs
- LogicalExpr.cs
- AccessViolationException.cs
- UIAgentCrashedException.cs
- PlainXmlSerializer.cs
- IODescriptionAttribute.cs
- TextModifier.cs
- ColorContext.cs
- XmlSchemas.cs
- WebPartConnectionsDisconnectVerb.cs
- ImageMap.cs
- WorkflowControlEndpoint.cs
- ReadOnlyHierarchicalDataSourceView.cs
- PolyLineSegmentFigureLogic.cs
- Canvas.cs
- ActionFrame.cs
- PageCache.cs
- Pens.cs
- SystemIPGlobalStatistics.cs
- LogEntrySerialization.cs
- DateTimeOffsetConverter.cs
- XamlReaderHelper.cs
- ContentElement.cs
- ISCIIEncoding.cs
- TableSectionStyle.cs
- Assembly.cs
- OperationBehaviorAttribute.cs
- WizardStepCollectionEditor.cs
- QuaternionAnimation.cs
- PropertyEmitter.cs
- Flattener.cs
- XmlWhitespace.cs
- AutomationEventArgs.cs
- GeneralTransformGroup.cs
- PersonalizableTypeEntry.cs
- ObjRef.cs
- BitmapEffectInputData.cs
- ValueTypeFixupInfo.cs
- ResourceExpressionBuilder.cs
- AttributeData.cs
- _UriTypeConverter.cs
- SiteMapHierarchicalDataSourceView.cs
- AccessDataSource.cs
- WebHttpSecurityElement.cs
- QuaternionAnimationBase.cs
- SmtpReplyReaderFactory.cs
- cryptoapiTransform.cs
- DataGridViewRowHeaderCell.cs
- ValidatedControlConverter.cs
- Method.cs
- ThumbButtonInfo.cs
- XmlQueryOutput.cs
- DoubleAnimation.cs
- ADRole.cs
- CategoryGridEntry.cs
- RootProjectionNode.cs
- LongValidator.cs
- Vector3DConverter.cs
- updateconfighost.cs
- ProcessModelSection.cs
- CodeAccessSecurityEngine.cs
- ExceptionUtil.cs
- EntityUtil.cs
- TextElement.cs
- RootProfilePropertySettingsCollection.cs
- ProfileService.cs
- AppDomainCompilerProxy.cs
- IndentedTextWriter.cs
- StaticDataManager.cs
- StringDictionaryCodeDomSerializer.cs
- RelatedEnd.cs
- ComboBox.cs
- SchemaTableColumn.cs
- HtmlProps.cs
- QilXmlWriter.cs
- SessionPageStatePersister.cs
- URI.cs
- HandlerFactoryWrapper.cs
- AnnotationAdorner.cs