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
- ListItem.cs
- ColumnCollectionEditor.cs
- WebPartManager.cs
- ToolStripButton.cs
- Mouse.cs
- OleDbException.cs
- OwnerDrawPropertyBag.cs
- DataTableNewRowEvent.cs
- SafeHandle.cs
- HtmlGenericControl.cs
- GroupedContextMenuStrip.cs
- DrawingImage.cs
- PageContentCollection.cs
- Underline.cs
- baseaxisquery.cs
- SharedUtils.cs
- LinqDataSourceInsertEventArgs.cs
- TemplateControl.cs
- SqlInternalConnection.cs
- DropSource.cs
- DynamicPropertyHolder.cs
- x509store.cs
- StorageMappingItemCollection.cs
- BidPrivateBase.cs
- StickyNoteContentControl.cs
- XmlAttributeCollection.cs
- SchemaAttDef.cs
- Attributes.cs
- WindowsServiceElement.cs
- FormsAuthenticationUserCollection.cs
- XmlElementAttributes.cs
- SamlSubjectStatement.cs
- DuplicateWaitObjectException.cs
- SubMenuStyleCollection.cs
- Panel.cs
- DelimitedListTraceListener.cs
- ArgumentNullException.cs
- HelpKeywordAttribute.cs
- PeerReferralPolicy.cs
- SynchronizationFilter.cs
- ObjectStateManagerMetadata.cs
- RegistryConfigurationProvider.cs
- X509WindowsSecurityToken.cs
- HttpModuleCollection.cs
- LoginView.cs
- GraphicsPath.cs
- BinaryCommonClasses.cs
- BuildProviderCollection.cs
- MessageHeader.cs
- AnnotationAuthorChangedEventArgs.cs
- SpellerInterop.cs
- InternalControlCollection.cs
- ImageMapEventArgs.cs
- SafeSecurityHandles.cs
- ToolStripItemDataObject.cs
- WebEvents.cs
- ParameterToken.cs
- ClientSideProviderDescription.cs
- SoapHeaderAttribute.cs
- InstanceKeyCollisionException.cs
- PropertyPathWorker.cs
- FormsAuthenticationUserCollection.cs
- Interlocked.cs
- AuthenticationModulesSection.cs
- RepeaterItemCollection.cs
- DataGridColumnsPage.cs
- UnsafeNativeMethods.cs
- TdsEnums.cs
- MouseActionConverter.cs
- PtsPage.cs
- HashMembershipCondition.cs
- CommittableTransaction.cs
- ImmutablePropertyDescriptorGridEntry.cs
- ImageDrawing.cs
- ConfigXmlWhitespace.cs
- TrackingRecord.cs
- GroupStyle.cs
- JoinGraph.cs
- HttpCookie.cs
- smtpconnection.cs
- EventSinkHelperWriter.cs
- ObjectItemLoadingSessionData.cs
- ReadOnlyTernaryTree.cs
- TransformCollection.cs
- ELinqQueryState.cs
- BrowserCapabilitiesCodeGenerator.cs
- XmlEnumAttribute.cs
- XPathDescendantIterator.cs
- RTTypeWrapper.cs
- SignatureDescription.cs
- SerializationException.cs
- InkPresenter.cs
- LineServicesRun.cs
- TraceSection.cs
- IsolatedStorageFilePermission.cs
- Encoder.cs
- SingleTagSectionHandler.cs
- NetworkInterface.cs
- XmlDocumentFragment.cs
- BreakRecordTable.cs