Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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;} } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlNodeList.cs
- ControlParameter.cs
- WindowsGraphics2.cs
- HelpProvider.cs
- CodeSubDirectory.cs
- XPathNodeHelper.cs
- UInt64.cs
- SR.cs
- View.cs
- AdCreatedEventArgs.cs
- TemplateField.cs
- FilterElement.cs
- RichTextBoxAutomationPeer.cs
- WebBrowserProgressChangedEventHandler.cs
- CollectionViewGroupInternal.cs
- SerializationException.cs
- XmlBufferReader.cs
- SplitterPanel.cs
- KernelTypeValidation.cs
- TogglePattern.cs
- XamlDesignerSerializationManager.cs
- Int32CAMarshaler.cs
- RTLAwareMessageBox.cs
- UnionExpr.cs
- SoapFormatterSinks.cs
- ToolStripCustomTypeDescriptor.cs
- KeyValuePairs.cs
- FormsAuthenticationTicket.cs
- StandardCommands.cs
- PlatformCulture.cs
- TableRowGroup.cs
- WebRequestModuleElementCollection.cs
- WebPartConnectionsConnectVerb.cs
- MemberRelationshipService.cs
- SqlUtil.cs
- GroupLabel.cs
- oledbmetadatacolumnnames.cs
- EncoderParameter.cs
- ServiceRoute.cs
- AnimationTimeline.cs
- SendActivityEventArgs.cs
- PreviewPrintController.cs
- XsltOutput.cs
- SqlXmlStorage.cs
- WorkflowInstance.cs
- _CommandStream.cs
- XamlPoint3DCollectionSerializer.cs
- SaveWorkflowCommand.cs
- Color.cs
- IndexerNameAttribute.cs
- Empty.cs
- WsdlBuildProvider.cs
- HighlightVisual.cs
- XmlIncludeAttribute.cs
- CodeMemberMethod.cs
- PublishLicense.cs
- TextClipboardData.cs
- Delay.cs
- DirtyTextRange.cs
- DuplexChannelBinder.cs
- WmlObjectListAdapter.cs
- ConfigXmlWhitespace.cs
- DeviceContext2.cs
- InstanceCreationEditor.cs
- Transform3D.cs
- AssociationTypeEmitter.cs
- WebReferencesBuildProvider.cs
- _NestedSingleAsyncResult.cs
- TimestampInformation.cs
- XmlCharCheckingWriter.cs
- ListViewCommandEventArgs.cs
- IgnoreFlushAndCloseStream.cs
- RenderingBiasValidation.cs
- VersionConverter.cs
- LineSegment.cs
- XPathNodeIterator.cs
- ContentPropertyAttribute.cs
- GroupJoinQueryOperator.cs
- SystemFonts.cs
- SqlDataSource.cs
- PageFunction.cs
- BitVec.cs
- WindowsTokenRoleProvider.cs
- ResizeGrip.cs
- Utils.cs
- SQLBoolean.cs
- IncrementalCompileAnalyzer.cs
- SecurityException.cs
- ItemsControl.cs
- DataGridRowAutomationPeer.cs
- AdvancedBindingEditor.cs
- XmlUnspecifiedAttribute.cs
- RandomDelayQueuedSendsAsyncResult.cs
- SecurityTraceRecordHelper.cs
- SurrogateEncoder.cs
- TreeNodeConverter.cs
- FontFamilyConverter.cs
- Task.cs
- ResXDataNode.cs
- DecimalConverter.cs