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
- HttpCapabilitiesBase.cs
- XamlReader.cs
- ComplusEndpointConfigContainer.cs
- PointCollectionConverter.cs
- DesignerActionItemCollection.cs
- MailWebEventProvider.cs
- SafeNativeMethods.cs
- LayoutEditorPart.cs
- Win32.cs
- CompilerGlobalScopeAttribute.cs
- TypefaceCollection.cs
- UserNameSecurityTokenProvider.cs
- CannotUnloadAppDomainException.cs
- RootProfilePropertySettingsCollection.cs
- TextRangeBase.cs
- SystemResourceHost.cs
- MimeBasePart.cs
- followingquery.cs
- LocalsItemDescription.cs
- SchemaNames.cs
- ExceptionList.cs
- StateWorkerRequest.cs
- SHA256Managed.cs
- CaseInsensitiveComparer.cs
- ControlHelper.cs
- Menu.cs
- PcmConverter.cs
- StoreContentChangedEventArgs.cs
- ScrollItemPatternIdentifiers.cs
- X509CertificateClaimSet.cs
- SoapHttpTransportImporter.cs
- SmtpReplyReader.cs
- Queue.cs
- CollectionDataContract.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- StaticTextPointer.cs
- DataGridParentRows.cs
- IndividualDeviceConfig.cs
- SqlSupersetValidator.cs
- BitmapCodecInfoInternal.cs
- OleDbFactory.cs
- UnorderedHashRepartitionStream.cs
- ObjectDataSourceEventArgs.cs
- BlockUIContainer.cs
- RepeatBehavior.cs
- ColorAnimationUsingKeyFrames.cs
- ListBoxAutomationPeer.cs
- SingleQueryOperator.cs
- ArgumentsParser.cs
- TreeNodeStyle.cs
- AsyncResult.cs
- CategoryNameCollection.cs
- ReceiveActivityDesignerTheme.cs
- Configuration.cs
- CommunicationException.cs
- OdbcEnvironment.cs
- _RequestCacheProtocol.cs
- EditorPart.cs
- ParallelLoopState.cs
- ImageKeyConverter.cs
- CompiledRegexRunner.cs
- BindingList.cs
- Pkcs9Attribute.cs
- HttpRequestTraceRecord.cs
- GeneratedView.cs
- FaultHandlingFilter.cs
- BuildDependencySet.cs
- DetailsViewInsertedEventArgs.cs
- Stylesheet.cs
- Point.cs
- DataTableMapping.cs
- ByteStream.cs
- DependencyPropertyHelper.cs
- FixedPageAutomationPeer.cs
- FamilyMap.cs
- EditingMode.cs
- TransactionState.cs
- SecurityResources.cs
- DocumentApplication.cs
- DirectoryNotFoundException.cs
- DataGridPagerStyle.cs
- DocumentGridContextMenu.cs
- EarlyBoundInfo.cs
- x509store.cs
- RelationshipWrapper.cs
- InputProcessorProfiles.cs
- SQLInt64.cs
- UIElementHelper.cs
- HtmlTableCell.cs
- DeleteMemberBinder.cs
- JsonSerializer.cs
- CommandPlan.cs
- XhtmlConformanceSection.cs
- EncodingStreamWrapper.cs
- ItemsControl.cs
- SpellerError.cs
- MsmqReceiveParameters.cs
- RadioButton.cs
- FixedPageAutomationPeer.cs
- MenuItem.cs