Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / System / Runtime / Serialization / Formatters / SoapMessage.cs / 1 / SoapMessage.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SoapMessage ** ** ** Purpose: Interface For Soap Method Call ** ** ===========================================================*/ namespace System.Runtime.Serialization.Formatters { using System.Runtime.Remoting; using System.Runtime.Remoting.Messaging; using System.Runtime.Serialization; using System; // Class is used to return the call object for a SOAP call. // This is used when the top SOAP object is a fake object, it contains // a method name as the element name instead of the object name. [Serializable()] [System.Runtime.InteropServices.ComVisible(true)] public class SoapMessage : ISoapMessage { internal String[] paramNames; internal Object[] paramValues; internal Type[] paramTypes; internal String methodName; internal String xmlNameSpace; internal Header[] headers; // Name of parameters, if null the default param names will be used public String[] ParamNames { get {return paramNames;} set {paramNames = value;} } // Parameter Values public Object[] ParamValues { get {return paramValues;} set {paramValues = value;} } public Type[] ParamTypes { get {return paramTypes;} set {paramTypes = value;} } // MethodName public String MethodName { get {return methodName;} set {methodName = value;} } // MethodName XmlNameSpace public String XmlNameSpace { get {return xmlNameSpace;} set {xmlNameSpace = value;} } // Headers public Header[] Headers { get {return headers;} set {headers = value;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SoapMessage ** ** ** Purpose: Interface For Soap Method Call ** ** ===========================================================*/ namespace System.Runtime.Serialization.Formatters { using System.Runtime.Remoting; using System.Runtime.Remoting.Messaging; using System.Runtime.Serialization; using System; // Class is used to return the call object for a SOAP call. // This is used when the top SOAP object is a fake object, it contains // a method name as the element name instead of the object name. [Serializable()] [System.Runtime.InteropServices.ComVisible(true)] public class SoapMessage : ISoapMessage { internal String[] paramNames; internal Object[] paramValues; internal Type[] paramTypes; internal String methodName; internal String xmlNameSpace; internal Header[] headers; // Name of parameters, if null the default param names will be used public String[] ParamNames { get {return paramNames;} set {paramNames = value;} } // Parameter Values public Object[] ParamValues { get {return paramValues;} set {paramValues = value;} } public Type[] ParamTypes { get {return paramTypes;} set {paramTypes = value;} } // MethodName public String MethodName { get {return methodName;} set {methodName = value;} } // MethodName XmlNameSpace public String XmlNameSpace { get {return xmlNameSpace;} set {xmlNameSpace = value;} } // Headers public Header[] Headers { get {return headers;} set {headers = value;} } } } // 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
- Mappings.cs
- ClientScriptManager.cs
- SequentialOutput.cs
- ProfileService.cs
- DataTable.cs
- streamingZipPartStream.cs
- FileBasedResourceGroveler.cs
- FixedSOMTextRun.cs
- DeploymentExceptionMapper.cs
- DynamicResourceExtensionConverter.cs
- CheckoutException.cs
- PersonalizationProviderHelper.cs
- PresentationTraceSources.cs
- SrgsElement.cs
- DynamicResourceExtension.cs
- DetailsViewCommandEventArgs.cs
- GenericTypeParameterBuilder.cs
- SetStateDesigner.cs
- DocumentationServerProtocol.cs
- TransactionManager.cs
- XmlChoiceIdentifierAttribute.cs
- Config.cs
- SafeFileMapViewHandle.cs
- VirtualizedContainerService.cs
- DataGridViewHitTestInfo.cs
- CalendarData.cs
- GACMembershipCondition.cs
- DefaultObjectMappingItemCollection.cs
- ProviderConnectionPointCollection.cs
- EncoderReplacementFallback.cs
- CellParaClient.cs
- SettingsSavedEventArgs.cs
- LeafCellTreeNode.cs
- TypeDelegator.cs
- SettingsPropertyWrongTypeException.cs
- PolicyLevel.cs
- PeerToPeerException.cs
- ProcessingInstructionAction.cs
- SynchronizedInputAdaptor.cs
- DependencyPropertyConverter.cs
- WindowPattern.cs
- Native.cs
- BulletedList.cs
- StackOverflowException.cs
- Timer.cs
- UnsafeNativeMethods.cs
- TextBox.cs
- NavigationHelper.cs
- LayoutInformation.cs
- ConvertBinder.cs
- PeerHopCountAttribute.cs
- ItemCollection.cs
- PackageRelationshipCollection.cs
- QuotedPrintableStream.cs
- PointCollectionValueSerializer.cs
- DataViewManager.cs
- WindowsHyperlink.cs
- DataServiceHostFactory.cs
- AssemblyHelper.cs
- ServerTooBusyException.cs
- TrackBar.cs
- TextPointerBase.cs
- EventSetter.cs
- DefaultHttpHandler.cs
- WindowsListViewGroupHelper.cs
- DataGridTextBoxColumn.cs
- FixedSOMElement.cs
- CacheOutputQuery.cs
- LoginCancelEventArgs.cs
- CreateParams.cs
- precedingquery.cs
- Constraint.cs
- CodeIndexerExpression.cs
- WebPartMenuStyle.cs
- GlobalEventManager.cs
- InplaceBitmapMetadataWriter.cs
- CodeAccessSecurityEngine.cs
- ObjectSet.cs
- UnsafeNativeMethods.cs
- TraceRecord.cs
- Conditional.cs
- ColumnMap.cs
- QilInvokeLateBound.cs
- MachineKeyConverter.cs
- BaseResourcesBuildProvider.cs
- RSAPKCS1KeyExchangeFormatter.cs
- DurableEnlistmentState.cs
- Hash.cs
- TableCell.cs
- RegexCapture.cs
- BitStack.cs
- CharacterHit.cs
- PeerName.cs
- XPathAxisIterator.cs
- DocumentPageHost.cs
- XmlAtomicValue.cs
- HttpCapabilitiesEvaluator.cs
- PageCatalogPart.cs
- XmlBindingWorker.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs