Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Discovery / DiscoveryDocument.cs / 1305376 / DiscoveryDocument.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Discovery { using System.Xml.Serialization; using System.Xml; using System.IO; using System; using System.Text; using System.Collections; using System.Web.Services.Configuration; ////// /// [XmlRoot("discovery", Namespace=DiscoveryDocument.Namespace)] public sealed class DiscoveryDocument { ///[To be supplied.] ////// /// public const string Namespace = "http://schemas.xmlsoap.org/disco/"; private ArrayList references = new ArrayList(); ///[To be supplied.] ////// /// public DiscoveryDocument() { } // NOTE, [....]: This property is not really ignored by the xml serializer. Instead, // the attributes that would go here are configured in WebServicesConfiguration's // DiscoveryDocumentSerializer property. ///[To be supplied.] ////// /// [XmlIgnore] public IList References { get { return references; } } ///[To be supplied.] ////// /// public static DiscoveryDocument Read(Stream stream) { XmlTextReader r = new XmlTextReader(stream); r.WhitespaceHandling = WhitespaceHandling.Significant; r.XmlResolver = null; r.DtdProcessing = DtdProcessing.Prohibit; return Read(r); } ///[To be supplied.] ////// /// public static DiscoveryDocument Read(TextReader reader) { XmlTextReader r = new XmlTextReader(reader); r.WhitespaceHandling = WhitespaceHandling.Significant; r.XmlResolver = null; r.DtdProcessing = DtdProcessing.Prohibit; return Read(r); } ///[To be supplied.] ////// /// public static DiscoveryDocument Read(XmlReader xmlReader) { return (DiscoveryDocument) WebServicesSection.Current.DiscoveryDocumentSerializer.Deserialize(xmlReader); } ///[To be supplied.] ////// /// public static bool CanRead(XmlReader xmlReader) { return WebServicesSection.Current.DiscoveryDocumentSerializer.CanDeserialize(xmlReader); } ///[To be supplied.] ////// /// public void Write(TextWriter writer) { XmlTextWriter xmlWriter = new XmlTextWriter(writer); xmlWriter.Formatting = Formatting.Indented; xmlWriter.Indentation = 2; Write(xmlWriter); } ///[To be supplied.] ////// /// public void Write(Stream stream) { TextWriter writer = new StreamWriter(stream, new UTF8Encoding(false)); Write(writer); } ///[To be supplied.] ////// /// public void Write(XmlWriter writer) { XmlSerializer serializer = WebServicesSection.Current.DiscoveryDocumentSerializer; XmlSerializerNamespaces ns = new XmlSerializerNamespaces(); serializer.Serialize(writer, this, ns); } } // This is a special serializer that hardwires to the generated // ServiceDescriptionSerializer. To regenerate the serializer // Turn on KEEPTEMPFILES // Restart server // Run disco as follows // disco[To be supplied.] ///?disco // Goto windows temp dir (usually \winnt\temp) // and get the latest generated .cs file // Change namespace to 'System.Web.Services.Discovery' // Change class names to DiscoveryDocumentSerializationWriter // and DiscoveryDocumentSerializationReader // Make the classes internal // Ensure the public Write method is Write10_discovery (If not // change Serialize to call the new one) // Ensure the public Read method is Read11_discovery (If not // change Deserialize to call the new one) internal class DiscoveryDocumentSerializer : XmlSerializer { protected override XmlSerializationReader CreateReader() { return new DiscoveryDocumentSerializationReader(); } protected override XmlSerializationWriter CreateWriter() { return new DiscoveryDocumentSerializationWriter(); } public override bool CanDeserialize(System.Xml.XmlReader xmlReader){ return xmlReader.IsStartElement("discovery", "http://schemas.xmlsoap.org/disco/"); } protected override void Serialize(Object objectToSerialize, XmlSerializationWriter writer){ ((DiscoveryDocumentSerializationWriter)writer).Write10_discovery(objectToSerialize); } protected override object Deserialize(XmlSerializationReader reader){ return ((DiscoveryDocumentSerializationReader)reader).Read10_discovery(); } } } // 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
- OverlappedAsyncResult.cs
- PointAnimationUsingKeyFrames.cs
- ZoneMembershipCondition.cs
- NativeRightsManagementAPIsStructures.cs
- IChannel.cs
- DataObjectPastingEventArgs.cs
- prompt.cs
- TrustSection.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- StylusEditingBehavior.cs
- ThreadStateException.cs
- WebPartZone.cs
- XamlPointCollectionSerializer.cs
- FormViewRow.cs
- MarkedHighlightComponent.cs
- TypeContext.cs
- RequestCachingSection.cs
- XmlSignificantWhitespace.cs
- WmlTextViewAdapter.cs
- SetStateEventArgs.cs
- ModifiableIteratorCollection.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- TableHeaderCell.cs
- ParameterBuilder.cs
- QilReference.cs
- PathFigureCollection.cs
- CreateUserWizard.cs
- SQLSingle.cs
- ContextInformation.cs
- EmptyImpersonationContext.cs
- ReadWriteSpinLock.cs
- CancelEventArgs.cs
- ProcessInfo.cs
- RuntimeIdentifierPropertyAttribute.cs
- CssTextWriter.cs
- WebPartManager.cs
- ByteStack.cs
- Effect.cs
- SizeConverter.cs
- SqlLiftIndependentRowExpressions.cs
- ProtocolViolationException.cs
- MulticastOption.cs
- IdentityNotMappedException.cs
- Grid.cs
- CommandBindingCollection.cs
- MenuAutoFormat.cs
- AnnotationHighlightLayer.cs
- MarkupCompilePass2.cs
- ReferenceConverter.cs
- ReferenceConverter.cs
- InfoCardAsymmetricCrypto.cs
- ParameterCollectionEditor.cs
- SwitchElementsCollection.cs
- FilterableAttribute.cs
- DesignerWithHeader.cs
- Renderer.cs
- RtfControlWordInfo.cs
- querybuilder.cs
- SqlBinder.cs
- MatrixAnimationBase.cs
- FilteredAttributeCollection.cs
- TextParaClient.cs
- ModelProperty.cs
- OptionalColumn.cs
- PriorityRange.cs
- SortExpressionBuilder.cs
- SqlComparer.cs
- InfoCardServiceInstallComponent.cs
- ZipIOLocalFileDataDescriptor.cs
- WebServiceErrorEvent.cs
- ObfuscateAssemblyAttribute.cs
- UpdateProgress.cs
- ConfigurationStrings.cs
- SafeThreadHandle.cs
- IsolationInterop.cs
- ByteStorage.cs
- CharUnicodeInfo.cs
- BorderSidesEditor.cs
- ClientUtils.cs
- DescendentsWalker.cs
- HttpGetClientProtocol.cs
- TextEditorParagraphs.cs
- PeerMaintainer.cs
- Utils.cs
- PageCache.cs
- Path.cs
- VideoDrawing.cs
- WebPartAuthorizationEventArgs.cs
- PrinterSettings.cs
- CellIdBoolean.cs
- PanelDesigner.cs
- SrgsDocumentParser.cs
- DetailsViewModeEventArgs.cs
- RuntimeVariableList.cs
- FrameworkEventSource.cs
- SafeNativeMethods.cs
- MemberAccessException.cs
- NativeMethods.cs
- ManifestResourceInfo.cs
- ResourceCategoryAttribute.cs