Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / ManagedLibraries / Remoting / MetaData / SudsParser.cs / 1305376 / SudsParser.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //============================================================ // // File: SudsParser.cs //// Author: Gopal Kakivaya (GopalK) // // Purpose: Defines SUDSParser that parses a given SUDS document // and generates types defined in it. // // Date: April 01, 2000 // Revised: November 15, 2000 (Wsdl)[....] // //=========================================================== namespace System.Runtime.Remoting.MetadataServices { using System; using System.IO; using System.Runtime.Remoting; using System.Runtime.Serialization; using System.Collections; // Represents exceptions thrown by the SUDSParser [Serializable] public class SUDSParserException : Exception { internal SUDSParserException(String message) : base(message) { } protected SUDSParserException(SerializationInfo info, StreamingContext context): base(info, context) {} } // Represents a block type of a complex type [Serializable] internal enum SchemaBlockType { ALL, SEQUENCE, CHOICE, ComplexContent} // This class parses SUDS documents internal class SUDSParser { WsdlParser wsdlParser; // Main parser internal SUDSParser(TextReader input, String outputDir, ArrayList outCodeStreamList, String locationURL, bool bWrappedProxy, String proxyNamespace) { Util.Log("SUDSParser.SUDSParser outputDir "+outputDir+" locationURL "+locationURL+" bWrappedProxy "+bWrappedProxy+" proxyNamespace "+proxyNamespace); Util.LogInput(ref input); wsdlParser = new WsdlParser(input, outputDir, outCodeStreamList, locationURL, bWrappedProxy, proxyNamespace); } internal void Parse() { Util.Log("SUDSParser.Parse"); wsdlParser.Parse(); } } } // 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
- LineUtil.cs
- DropSource.cs
- RegexReplacement.cs
- RsaSecurityTokenAuthenticator.cs
- validationstate.cs
- PropertyGrid.cs
- SqlMethodAttribute.cs
- WindowsGraphicsCacheManager.cs
- PaintEvent.cs
- WinFormsSecurity.cs
- SizeConverter.cs
- ApplicationInfo.cs
- XPathAncestorIterator.cs
- CopyCodeAction.cs
- TransferMode.cs
- FormattedText.cs
- streamingZipPartStream.cs
- TransformerInfo.cs
- PrivateFontCollection.cs
- Transform3DGroup.cs
- CheckBox.cs
- TagPrefixCollection.cs
- Native.cs
- DataGridViewCellConverter.cs
- Configuration.cs
- Comparer.cs
- InternalResources.cs
- DynamicPropertyReader.cs
- SafeNativeMethods.cs
- returneventsaver.cs
- UriParserTemplates.cs
- InvokeGenerator.cs
- AsymmetricSignatureDeformatter.cs
- ChildTable.cs
- activationcontext.cs
- RelationshipNavigation.cs
- XmlBindingWorker.cs
- Function.cs
- SortKey.cs
- KeyFrames.cs
- InputLanguageManager.cs
- Empty.cs
- XDRSchema.cs
- HtmlToClrEventProxy.cs
- VarInfo.cs
- PropertyMetadata.cs
- FontWeights.cs
- WebOperationContext.cs
- PreviewPageInfo.cs
- MasterPage.cs
- MaskedTextBox.cs
- ConnectivityStatus.cs
- StartUpEventArgs.cs
- UnsafeNativeMethods.cs
- xdrvalidator.cs
- StubHelpers.cs
- WebExceptionStatus.cs
- SrgsElementList.cs
- PeerObject.cs
- AdornedElementPlaceholder.cs
- BitmapInitialize.cs
- BaseTemplatedMobileComponentEditor.cs
- SqlConnectionHelper.cs
- CodeCatchClauseCollection.cs
- ScriptingProfileServiceSection.cs
- OutputWindow.cs
- MD5HashHelper.cs
- DecimalAnimationBase.cs
- ProtocolElement.cs
- RegistryDataKey.cs
- ObjectPersistData.cs
- NullableFloatMinMaxAggregationOperator.cs
- HttpBrowserCapabilitiesWrapper.cs
- ProcessInfo.cs
- HostedNamedPipeTransportManager.cs
- EditorPartChrome.cs
- ScopelessEnumAttribute.cs
- ExtendedPropertyDescriptor.cs
- LinqDataSourceInsertEventArgs.cs
- SafeMILHandle.cs
- MetafileHeaderWmf.cs
- X509Chain.cs
- FolderBrowserDialog.cs
- MarkupCompilePass1.cs
- NumberFormatInfo.cs
- SourceSwitch.cs
- VisualTarget.cs
- DataGridTable.cs
- FrameworkTextComposition.cs
- EventLogEntryCollection.cs
- Assert.cs
- SecurityTokenResolver.cs
- _TLSstream.cs
- StreamGeometry.cs
- Quaternion.cs
- _HeaderInfoTable.cs
- DoubleStorage.cs
- GridViewRow.cs
- FixedSOMTableRow.cs
- URL.cs