Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaIdentityConstraint.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Rijndael.cs
- SortQuery.cs
- StrokeSerializer.cs
- MemberAccessException.cs
- CodeStatement.cs
- OdbcCommandBuilder.cs
- Context.cs
- SerializerDescriptor.cs
- WebPartConnectionsConfigureVerb.cs
- VersionedStream.cs
- WS2007HttpBinding.cs
- DateTimeFormatInfo.cs
- SspiSafeHandles.cs
- XPathNodeHelper.cs
- PixelFormats.cs
- DataObjectFieldAttribute.cs
- BitmapPalette.cs
- ToolStripDropDownMenu.cs
- AnimationClock.cs
- ActivityStatusChangeEventArgs.cs
- LogReservationCollection.cs
- sitestring.cs
- TileBrush.cs
- TransformerTypeCollection.cs
- SafeThreadHandle.cs
- SmtpClient.cs
- Floater.cs
- ClientScriptItem.cs
- LayoutTableCell.cs
- httpserverutility.cs
- NativeMethods.cs
- SoapReflectionImporter.cs
- TreeViewImageIndexConverter.cs
- ipaddressinformationcollection.cs
- AvTrace.cs
- StylusPoint.cs
- CharacterShapingProperties.cs
- TextProviderWrapper.cs
- WorkflowDesignerMessageFilter.cs
- IDispatchConstantAttribute.cs
- Query.cs
- UmAlQuraCalendar.cs
- X509CertificateCollection.cs
- ListBoxItem.cs
- BindingEntityInfo.cs
- ServiceManager.cs
- GAC.cs
- ObjectViewQueryResultData.cs
- ThemeInfoAttribute.cs
- IdentitySection.cs
- TabItem.cs
- CommandManager.cs
- GC.cs
- streamingZipPartStream.cs
- IdentityModelDictionary.cs
- MaterialGroup.cs
- TimelineCollection.cs
- XPathChildIterator.cs
- Processor.cs
- MailDefinition.cs
- __ComObject.cs
- RequiredFieldValidator.cs
- ClassValidator.cs
- __Error.cs
- NamedPipeTransportManager.cs
- _NegoState.cs
- SQLDecimal.cs
- AppDomainShutdownMonitor.cs
- WebPartDeleteVerb.cs
- PopOutPanel.cs
- HttpVersion.cs
- HandlerBase.cs
- SwitchExpression.cs
- DesignBindingValueUIHandler.cs
- Utils.cs
- ControlsConfig.cs
- Utils.cs
- TextShapeableCharacters.cs
- FamilyTypeface.cs
- DesignerPerfEventProvider.cs
- NamedPermissionSet.cs
- ConfigurationSectionHelper.cs
- TypeReference.cs
- ExtensionDataObject.cs
- AssemblyInfo.cs
- Nodes.cs
- DataGridViewLayoutData.cs
- WebConfigurationFileMap.cs
- TemplateContainer.cs
- WebPartHeaderCloseVerb.cs
- WebPartManager.cs
- SQLBinaryStorage.cs
- PropertyEmitterBase.cs
- ZipPackage.cs
- SqlDependency.cs
- TransformerTypeCollection.cs
- SystemTcpConnection.cs
- CollectionViewSource.cs
- GradientBrush.cs
- SafePointer.cs