Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Runtime / Serialization / Formatters / SoapMessage.cs / 1305376 / SoapMessage.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SoapMessage ** ** ** Purpose: Interface For Soap Method Call ** ** ===========================================================*/ #if FEATURE_REMOTING 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;} } } } #endif // FEATURE_REMOTING // 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 ** ** ===========================================================*/ #if FEATURE_REMOTING 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;} } } } #endif // FEATURE_REMOTING // 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
- CallSite.cs
- AsyncDataRequest.cs
- FixedSOMContainer.cs
- CustomExpression.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- ObjectTag.cs
- XmlSchemaFacet.cs
- DrawingContext.cs
- RenderData.cs
- MsmqHostedTransportConfiguration.cs
- ThreadAbortException.cs
- TransactionProtocolConverter.cs
- XmlSubtreeReader.cs
- DependencyProperty.cs
- BindingRestrictions.cs
- DoubleLinkListEnumerator.cs
- Membership.cs
- InheritanceRules.cs
- BufferedGraphics.cs
- Evidence.cs
- Lasso.cs
- OlePropertyStructs.cs
- ConfigurationStrings.cs
- PolyBezierSegment.cs
- ScriptReference.cs
- KernelTypeValidation.cs
- AdapterUtil.cs
- StreamReader.cs
- Rights.cs
- WindowsSysHeader.cs
- RestClientProxyHandler.cs
- XamlVector3DCollectionSerializer.cs
- BinaryMessageEncodingBindingElement.cs
- TextServicesPropertyRanges.cs
- BamlRecordHelper.cs
- ObjectFullSpanRewriter.cs
- RTLAwareMessageBox.cs
- Int32Rect.cs
- Int32Rect.cs
- ConfigurationLockCollection.cs
- ExpressionList.cs
- SqlTriggerAttribute.cs
- Utils.cs
- URLMembershipCondition.cs
- ImageCodecInfoPrivate.cs
- Encoding.cs
- BamlRecordReader.cs
- ListItemCollection.cs
- DataServiceContext.cs
- HtmlShim.cs
- ExcludeFromCodeCoverageAttribute.cs
- RootProfilePropertySettingsCollection.cs
- CircleHotSpot.cs
- GraphicsPathIterator.cs
- DataGridColumnHeaderItemAutomationPeer.cs
- ProfilePropertyNameValidator.cs
- WsdlBuildProvider.cs
- InvalidChannelBindingException.cs
- JapaneseCalendar.cs
- Transform.cs
- Line.cs
- WebBrowser.cs
- DoubleAnimation.cs
- HostSecurityManager.cs
- DataTableReader.cs
- CqlParserHelpers.cs
- LogReserveAndAppendState.cs
- Lease.cs
- DesignTimeValidationFeature.cs
- NodeFunctions.cs
- PerformanceCountersElement.cs
- Choices.cs
- SystemIcmpV4Statistics.cs
- DataGridPagerStyle.cs
- AsymmetricKeyExchangeFormatter.cs
- compensatingcollection.cs
- PrintPreviewGraphics.cs
- WebSysDefaultValueAttribute.cs
- PropertyMetadata.cs
- FileUpload.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- PreservationFileReader.cs
- DataRow.cs
- MachineSettingsSection.cs
- ChangeNode.cs
- PartEditor.cs
- SpStreamWrapper.cs
- DateTimeSerializationSection.cs
- StrokeCollectionDefaultValueFactory.cs
- DataRow.cs
- ViewStateException.cs
- KeyToListMap.cs
- UInt32.cs
- EntityDataSourceContainerNameConverter.cs
- ImageCodecInfoPrivate.cs
- DbConnectionStringBuilder.cs
- PackageFilter.cs
- CssClassPropertyAttribute.cs
- RoutedEventHandlerInfo.cs
- SizeChangedEventArgs.cs