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
- TemplateControl.cs
- EntityKeyElement.cs
- CheckableControlBaseAdapter.cs
- QueryOptionExpression.cs
- ContextProperty.cs
- FigureParagraph.cs
- GridViewCommandEventArgs.cs
- UserUseLicenseDictionaryLoader.cs
- SmtpNetworkElement.cs
- SQLResource.cs
- RepeaterItemCollection.cs
- XsdBuilder.cs
- SecurityResources.cs
- Collection.cs
- ListViewItem.cs
- TextBounds.cs
- EncryptedType.cs
- DaylightTime.cs
- InputDevice.cs
- DragDrop.cs
- CodeMethodReturnStatement.cs
- UnauthorizedAccessException.cs
- ConfigViewGenerator.cs
- XmlQueryType.cs
- BinaryExpressionHelper.cs
- Rotation3DAnimationBase.cs
- StorageScalarPropertyMapping.cs
- AcceleratedTokenAuthenticator.cs
- MsmqIntegrationInputChannel.cs
- ClientData.cs
- FrameworkReadOnlyPropertyMetadata.cs
- TextModifierScope.cs
- MimeWriter.cs
- CoreSwitches.cs
- DataGridViewComboBoxColumn.cs
- SecurityHeader.cs
- SecurityManager.cs
- HandlerWithFactory.cs
- CorrelationKey.cs
- OrderedHashRepartitionEnumerator.cs
- DocumentApplicationJournalEntryEventArgs.cs
- GroupBoxRenderer.cs
- JsonObjectDataContract.cs
- ConfigViewGenerator.cs
- Package.cs
- ResourceSet.cs
- WarningException.cs
- SiteMapDataSource.cs
- Scene3D.cs
- XmlLanguage.cs
- Facet.cs
- TCPListener.cs
- COM2ExtendedBrowsingHandler.cs
- DbConnectionStringBuilder.cs
- CodeThrowExceptionStatement.cs
- DropShadowBitmapEffect.cs
- WebPartMenu.cs
- odbcmetadatafactory.cs
- ZipIOLocalFileDataDescriptor.cs
- SendMessageRecord.cs
- CacheChildrenQuery.cs
- CheckBox.cs
- IteratorDescriptor.cs
- IListConverters.cs
- XmlWrappingReader.cs
- AbandonedMutexException.cs
- SqlHelper.cs
- SerializationHelper.cs
- smtppermission.cs
- WindowsToolbar.cs
- IconBitmapDecoder.cs
- ProfessionalColorTable.cs
- TextEmbeddedObject.cs
- SessionStateContainer.cs
- ProcessModuleCollection.cs
- DataControlLinkButton.cs
- EventManager.cs
- StateBag.cs
- _AutoWebProxyScriptEngine.cs
- IntSecurity.cs
- KeyPullup.cs
- TransformedBitmap.cs
- Rect3DConverter.cs
- Popup.cs
- ADMembershipProvider.cs
- _Rfc2616CacheValidators.cs
- DirectoryNotFoundException.cs
- Hash.cs
- TraceListeners.cs
- DesigntimeLicenseContextSerializer.cs
- ServiceX509SecurityTokenProvider.cs
- MatrixTransform.cs
- TextFindEngine.cs
- WebPartConnectionsConnectVerb.cs
- ContentFileHelper.cs
- DataSourceXmlAttributeAttribute.cs
- X509Certificate2Collection.cs
- ChannelServices.cs
- PowerEase.cs
- DbDataAdapter.cs