Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaAny.cs / 1 / XmlSchemaAny.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.ComponentModel; using System.Xml.Serialization; using System.Text; ////// /// public class XmlSchemaAny : XmlSchemaParticle { string ns; XmlSchemaContentProcessing processContents = XmlSchemaContentProcessing.None; NamespaceList namespaceList; ///[To be supplied.] ////// /// [XmlAttribute("namespace")] public string Namespace { get { return ns; } set { ns = value; } } ///[To be supplied.] ////// /// [XmlAttribute("processContents"), DefaultValue(XmlSchemaContentProcessing.None)] public XmlSchemaContentProcessing ProcessContents { get { return processContents; } set { processContents = value; } } [XmlIgnore] internal NamespaceList NamespaceList { get { return namespaceList; } } [XmlIgnore] internal string ResolvedNamespace { get { if (ns == null || ns.Length == 0) { return "##any"; } return ns; } } [XmlIgnore] internal XmlSchemaContentProcessing ProcessContentsCorrect { get { return processContents == XmlSchemaContentProcessing.None ? XmlSchemaContentProcessing.Strict : processContents; } } internal override string NameString { get { switch (namespaceList.Type) { case NamespaceList.ListType.Any: return "##any:*"; case NamespaceList.ListType.Other: return "##other:*"; case NamespaceList.ListType.Set: StringBuilder sb = new StringBuilder(); int i = 1; foreach(string wildcardNS in namespaceList.Enumerate) { sb.Append(wildcardNS + ":*"); if (i < namespaceList.Enumerate.Count) { sb.Append(" "); } i++; } return sb.ToString(); default: return string.Empty; } } } internal void BuildNamespaceList(string targetNamespace) { if (ns != null) { //If namespace="" default to namespace="##any" namespaceList = new NamespaceList(ns, targetNamespace); } else { namespaceList = new NamespaceList(); } } internal void BuildNamespaceListV1Compat(string targetNamespace) { if (ns != null) { namespaceList = new NamespaceListV1Compat(ns, targetNamespace); } else { namespaceList = new NamespaceList(); //This is only ##any, hence base class is sufficient } } internal bool Allows(XmlQualifiedName qname) { return namespaceList.Allows(qname.Namespace); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.ComponentModel; using System.Xml.Serialization; using System.Text; ////// /// public class XmlSchemaAny : XmlSchemaParticle { string ns; XmlSchemaContentProcessing processContents = XmlSchemaContentProcessing.None; NamespaceList namespaceList; ///[To be supplied.] ////// /// [XmlAttribute("namespace")] public string Namespace { get { return ns; } set { ns = value; } } ///[To be supplied.] ////// /// [XmlAttribute("processContents"), DefaultValue(XmlSchemaContentProcessing.None)] public XmlSchemaContentProcessing ProcessContents { get { return processContents; } set { processContents = value; } } [XmlIgnore] internal NamespaceList NamespaceList { get { return namespaceList; } } [XmlIgnore] internal string ResolvedNamespace { get { if (ns == null || ns.Length == 0) { return "##any"; } return ns; } } [XmlIgnore] internal XmlSchemaContentProcessing ProcessContentsCorrect { get { return processContents == XmlSchemaContentProcessing.None ? XmlSchemaContentProcessing.Strict : processContents; } } internal override string NameString { get { switch (namespaceList.Type) { case NamespaceList.ListType.Any: return "##any:*"; case NamespaceList.ListType.Other: return "##other:*"; case NamespaceList.ListType.Set: StringBuilder sb = new StringBuilder(); int i = 1; foreach(string wildcardNS in namespaceList.Enumerate) { sb.Append(wildcardNS + ":*"); if (i < namespaceList.Enumerate.Count) { sb.Append(" "); } i++; } return sb.ToString(); default: return string.Empty; } } } internal void BuildNamespaceList(string targetNamespace) { if (ns != null) { //If namespace="" default to namespace="##any" namespaceList = new NamespaceList(ns, targetNamespace); } else { namespaceList = new NamespaceList(); } } internal void BuildNamespaceListV1Compat(string targetNamespace) { if (ns != null) { namespaceList = new NamespaceListV1Compat(ns, targetNamespace); } else { namespaceList = new NamespaceList(); //This is only ##any, hence base class is sufficient } } internal bool Allows(XmlQualifiedName qname) { return namespaceList.Allows(qname.Namespace); } } } // 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
- RecommendedAsConfigurableAttribute.cs
- DeclarationUpdate.cs
- Span.cs
- InfoCardProofToken.cs
- OdbcTransaction.cs
- TemplatedMailWebEventProvider.cs
- TraceHandler.cs
- PerformanceCounterTraceRecord.cs
- DSACryptoServiceProvider.cs
- Label.cs
- DesignSurfaceCollection.cs
- DataColumn.cs
- SemaphoreSecurity.cs
- DuplicateWaitObjectException.cs
- WindowsScrollBar.cs
- ExpanderAutomationPeer.cs
- HttpConfigurationContext.cs
- SessionState.cs
- WebBrowser.cs
- infer.cs
- XmlObjectSerializer.cs
- DateTimeValueSerializerContext.cs
- DelegateBodyWriter.cs
- WebPartDescriptionCollection.cs
- Matrix3DValueSerializer.cs
- SoapException.cs
- ConnectionInterfaceCollection.cs
- CharacterBufferReference.cs
- SiteMapPath.cs
- ComPlusThreadInitializer.cs
- InputProviderSite.cs
- OleDbStruct.cs
- ImageField.cs
- VisualBrush.cs
- HttpCapabilitiesEvaluator.cs
- MachineKeySection.cs
- NativeMethods.cs
- SourceSwitch.cs
- SecureEnvironment.cs
- CallSiteOps.cs
- XmlNavigatorStack.cs
- PaperSize.cs
- CultureInfo.cs
- StylusPlugInCollection.cs
- __Filters.cs
- StaticDataManager.cs
- ToolStripDropTargetManager.cs
- ApplicationProxyInternal.cs
- ResourceSet.cs
- ObjectCloneHelper.cs
- Material.cs
- MediaElement.cs
- ConvertEvent.cs
- CreateSequence.cs
- SqlDataSourceView.cs
- SizeLimitedCache.cs
- ToolTipService.cs
- Rotation3DAnimationUsingKeyFrames.cs
- StrokeRenderer.cs
- WebPartZoneBaseDesigner.cs
- HtmlInputRadioButton.cs
- UnsafeNativeMethodsTablet.cs
- QueueProcessor.cs
- TextEditorContextMenu.cs
- GetPageCompletedEventArgs.cs
- TargetConverter.cs
- DropShadowEffect.cs
- WebPartMenu.cs
- CompilationLock.cs
- ZoneButton.cs
- NavigatingCancelEventArgs.cs
- EllipseGeometry.cs
- AttachedPropertiesService.cs
- ToolStripMenuItem.cs
- WebPartMovingEventArgs.cs
- hebrewshape.cs
- WebBrowserProgressChangedEventHandler.cs
- Geometry.cs
- HtmlImage.cs
- XmlSignatureManifest.cs
- PassportAuthenticationModule.cs
- ProfileInfo.cs
- MappingModelBuildProvider.cs
- FontCollection.cs
- SecurityUtils.cs
- SqlDataSource.cs
- FontStretch.cs
- CompilerScopeManager.cs
- While.cs
- SqlCrossApplyToCrossJoin.cs
- CollectionView.cs
- ControlIdConverter.cs
- XmlSchemaChoice.cs
- RuleSettingsCollection.cs
- ObjectStateFormatter.cs
- DataGridViewColumnConverter.cs
- ReliableChannelFactory.cs
- ToolBarPanel.cs
- HighContrastHelper.cs
- DataGridViewCheckBoxCell.cs