Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- CurrencyWrapper.cs
- MessageSecurityVersionConverter.cs
- DataBindEngine.cs
- DocumentEventArgs.cs
- SHA1.cs
- MultiView.cs
- TranslateTransform.cs
- ImageKeyConverter.cs
- RectangleHotSpot.cs
- EventSourceCreationData.cs
- GeometryDrawing.cs
- QueryableDataSourceEditData.cs
- DocumentViewerBase.cs
- SessionPageStateSection.cs
- X509CertificateEndpointIdentity.cs
- DataGridViewComboBoxEditingControl.cs
- TreeNodeStyle.cs
- Padding.cs
- SecurityElement.cs
- StreamGeometryContext.cs
- WCFBuildProvider.cs
- ProfessionalColors.cs
- Console.cs
- PrimaryKeyTypeConverter.cs
- NetworkInformationException.cs
- TreeViewBindingsEditor.cs
- ReachBasicContext.cs
- DynamicRenderer.cs
- AspCompat.cs
- SqlComparer.cs
- BaseTemplateBuildProvider.cs
- MenuStrip.cs
- ConcurrentDictionary.cs
- AudioSignalProblemOccurredEventArgs.cs
- ContractValidationHelper.cs
- ConfigurationSection.cs
- BitmapDecoder.cs
- MiniCustomAttributeInfo.cs
- WebServiceErrorEvent.cs
- returneventsaver.cs
- SimplePropertyEntry.cs
- ByValueEqualityComparer.cs
- ChangeInterceptorAttribute.cs
- DataGridSortCommandEventArgs.cs
- FontUnit.cs
- UriScheme.cs
- SafeSecurityHelper.cs
- BoundPropertyEntry.cs
- MasterPageParser.cs
- CuspData.cs
- AnnotationAdorner.cs
- HandleCollector.cs
- HotSpotCollection.cs
- QueryableDataSource.cs
- shaper.cs
- UdpDuplexChannel.cs
- SessionStateModule.cs
- GenericEnumConverter.cs
- ObjectListCommand.cs
- GridViewCommandEventArgs.cs
- BinaryNode.cs
- IdentityManager.cs
- MaskInputRejectedEventArgs.cs
- BaseUriHelper.cs
- GPStream.cs
- TcpProcessProtocolHandler.cs
- BitmapFrameEncode.cs
- DataGridColumnStyleMappingNameEditor.cs
- SafeRegistryHandle.cs
- FieldNameLookup.cs
- CompilerParameters.cs
- MimeTypeMapper.cs
- RoutingEndpointTrait.cs
- ObjectResult.cs
- AppDomainManager.cs
- Oid.cs
- WebPartCollection.cs
- ArcSegment.cs
- TcpTransportSecurity.cs
- BindableAttribute.cs
- sqlpipe.cs
- CachedTypeface.cs
- IndicCharClassifier.cs
- ThousandthOfEmRealPoints.cs
- PropertyState.cs
- Font.cs
- LineInfo.cs
- GeneralTransform3DTo2D.cs
- Unit.cs
- WebPartDescription.cs
- HtmlControl.cs
- DataColumnCollection.cs
- SqlDataAdapter.cs
- RuleSetCollection.cs
- TraceXPathNavigator.cs
- XsdDateTime.cs
- AutoSizeComboBox.cs
- ResourcePermissionBase.cs
- AssertFilter.cs
- HexParser.cs