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
- WebPartTransformerAttribute.cs
- AudioFormatConverter.cs
- WebPermission.cs
- ButtonAutomationPeer.cs
- ValidatorCollection.cs
- ResourceAttributes.cs
- XmlAtomicValue.cs
- MembershipPasswordException.cs
- HttpCapabilitiesEvaluator.cs
- ReadContentAsBinaryHelper.cs
- ColorContext.cs
- DoubleAnimation.cs
- ActionFrame.cs
- _IPv4Address.cs
- XmlNodeList.cs
- XmlUtilWriter.cs
- DataGridViewCellStyle.cs
- SQLCharsStorage.cs
- LiteralControl.cs
- EdmSchemaError.cs
- AuthenticationModulesSection.cs
- _BasicClient.cs
- CertificateReferenceElement.cs
- DataRelationCollection.cs
- CellParagraph.cs
- MouseGestureConverter.cs
- Material.cs
- TreeNodeStyleCollection.cs
- SerialStream.cs
- ExecutionScope.cs
- PathGradientBrush.cs
- CodeDirectoryCompiler.cs
- PenThreadPool.cs
- WinEventWrap.cs
- SamlAuthorizationDecisionStatement.cs
- DaylightTime.cs
- PopOutPanel.cs
- ConvertersCollection.cs
- TableAdapterManagerHelper.cs
- _Rfc2616CacheValidators.cs
- EmptyEnumerator.cs
- CatalogPartChrome.cs
- BookmarkWorkItem.cs
- QilParameter.cs
- WebPartConnection.cs
- SQLInt32.cs
- ByteStack.cs
- DashStyle.cs
- SqlFunctionAttribute.cs
- DateTimeConverter.cs
- FormsAuthenticationModule.cs
- UpdatePanel.cs
- ConstraintEnumerator.cs
- ListBox.cs
- IPHostEntry.cs
- RadioButton.cs
- InputScope.cs
- ClientSettings.cs
- ValueTable.cs
- BaseCodeDomTreeGenerator.cs
- WindowsButton.cs
- MarshalByRefObject.cs
- AdditionalEntityFunctions.cs
- RoutedEvent.cs
- DurableDispatcherAddressingFault.cs
- VersionConverter.cs
- EUCJPEncoding.cs
- CompositeFontInfo.cs
- PropertyMappingExceptionEventArgs.cs
- WebPartConnectionsConfigureVerb.cs
- StaticFileHandler.cs
- DataGridViewCellStyleBuilderDialog.cs
- ThicknessAnimation.cs
- BrowserDefinition.cs
- BrowserDefinitionCollection.cs
- Vector3DCollectionValueSerializer.cs
- CompiledQuery.cs
- IgnorePropertiesAttribute.cs
- RecipientInfo.cs
- SingleKeyFrameCollection.cs
- XmlIgnoreAttribute.cs
- PowerModeChangedEventArgs.cs
- AvTraceDetails.cs
- MessageSecurityOverHttpElement.cs
- SourceInterpreter.cs
- FunctionImportMapping.cs
- ErrorLog.cs
- AutomationAttributeInfo.cs
- SerializationHelper.cs
- WaitHandle.cs
- ForEachAction.cs
- EntityClassGenerator.cs
- WindowsToolbarItemAsMenuItem.cs
- BindingMemberInfo.cs
- PartitionResolver.cs
- IgnoreSectionHandler.cs
- CommandBindingCollection.cs
- NegotiationTokenAuthenticator.cs
- BooleanAnimationBase.cs
- ContractInstanceProvider.cs