Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataTableMappingCollection.cs
- Executor.cs
- SiteOfOriginPart.cs
- SecurityTokenRequirement.cs
- LZCodec.cs
- DoubleSumAggregationOperator.cs
- SoapFormatter.cs
- RelationshipEndCollection.cs
- OdbcParameter.cs
- EmptyImpersonationContext.cs
- LongSumAggregationOperator.cs
- assertwrapper.cs
- ServiceDefaults.cs
- WindowsScrollBarBits.cs
- ServiceInstanceProvider.cs
- ZipIOCentralDirectoryBlock.cs
- xml.cs
- HttpListenerElement.cs
- TableLayoutStyleCollection.cs
- CollectionViewSource.cs
- PropertyFilter.cs
- Symbol.cs
- COAUTHINFO.cs
- Trace.cs
- GcHandle.cs
- SQLRoleProvider.cs
- dbdatarecord.cs
- messageonlyhwndwrapper.cs
- DefaultBindingPropertyAttribute.cs
- dbdatarecord.cs
- CloudCollection.cs
- StringSource.cs
- Encoder.cs
- Pair.cs
- UnknownBitmapDecoder.cs
- Duration.cs
- RemotingException.cs
- DataGridViewCheckBoxColumn.cs
- UserControlDesigner.cs
- SecurityTokenAuthenticator.cs
- _AutoWebProxyScriptWrapper.cs
- ParseHttpDate.cs
- NullExtension.cs
- GetWinFXPath.cs
- NamedPipeActivation.cs
- DefaultProxySection.cs
- TypedElement.cs
- ConnectivityStatus.cs
- DbDataReader.cs
- StringTraceRecord.cs
- BinaryConverter.cs
- Conditional.cs
- RowsCopiedEventArgs.cs
- DataGridViewCheckBoxCell.cs
- TypedAsyncResult.cs
- RetrieveVirtualItemEventArgs.cs
- WindowAutomationPeer.cs
- ApplicationSecurityInfo.cs
- followingquery.cs
- SiteOfOriginContainer.cs
- TemplateBindingExtension.cs
- StreamSecurityUpgradeInitiator.cs
- TreeNodeConverter.cs
- RenderDataDrawingContext.cs
- BorderGapMaskConverter.cs
- MILUtilities.cs
- LinkLabel.cs
- EndOfStreamException.cs
- AnonymousIdentificationSection.cs
- iisPickupDirectory.cs
- AvTraceDetails.cs
- HMAC.cs
- EntityContainerAssociationSetEnd.cs
- HelpEvent.cs
- OleDbWrapper.cs
- DictionaryItemsCollection.cs
- ResourceReferenceKeyNotFoundException.cs
- StrongName.cs
- FixedPageStructure.cs
- TextMarkerSource.cs
- Stream.cs
- SystemResources.cs
- XmlWrappingReader.cs
- InvariantComparer.cs
- FramingFormat.cs
- ImageSourceConverter.cs
- EDesignUtil.cs
- SchemaType.cs
- BinaryUtilClasses.cs
- OneOfConst.cs
- PointAnimationBase.cs
- WebServiceHandler.cs
- RequestTimeoutManager.cs
- Encoding.cs
- ScriptIgnoreAttribute.cs
- CollectionConverter.cs
- AttributeData.cs
- TextEditorContextMenu.cs
- MutableAssemblyCacheEntry.cs
- ContentPresenter.cs