Code:
/ FX-1434 / FX-1434 / 1.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
- PrintDocument.cs
- WindowsListBox.cs
- LocalFileSettingsProvider.cs
- WebPartPersonalization.cs
- RoutedEventHandlerInfo.cs
- Vector3dCollection.cs
- ActivityWithResultConverter.cs
- GlobalizationAssembly.cs
- SeverityFilter.cs
- FileSecurity.cs
- AddressUtility.cs
- PointLight.cs
- ListViewDeletedEventArgs.cs
- RelationalExpressions.cs
- SystemFonts.cs
- ParserStreamGeometryContext.cs
- COAUTHIDENTITY.cs
- AppDomainAttributes.cs
- StaticSiteMapProvider.cs
- Calendar.cs
- InkCollectionBehavior.cs
- ScaleTransform.cs
- SafeNativeMethods.cs
- StrokeNode.cs
- TemplateBindingExpressionConverter.cs
- IndentedWriter.cs
- WizardSideBarListControlItemEventArgs.cs
- SqlProviderUtilities.cs
- DefaultObjectMappingItemCollection.cs
- Update.cs
- DragDeltaEventArgs.cs
- SqlCaseSimplifier.cs
- DetailsViewInsertEventArgs.cs
- XamlReader.cs
- PathTooLongException.cs
- InputChannelBinder.cs
- SafeRegistryHandle.cs
- TraceContextRecord.cs
- updateconfighost.cs
- Utils.cs
- OrderablePartitioner.cs
- mda.cs
- DbModificationCommandTree.cs
- NativeMethods.cs
- XmlEncoding.cs
- EmptyImpersonationContext.cs
- MenuItemCollection.cs
- AutomationElement.cs
- UrlParameterWriter.cs
- ListBoxAutomationPeer.cs
- WebResourceAttribute.cs
- CertificateReferenceElement.cs
- MDIClient.cs
- CLSCompliantAttribute.cs
- ClientProxyGenerator.cs
- PlatformCulture.cs
- PerformanceCounter.cs
- DocumentEventArgs.cs
- SpeechSeg.cs
- SpeechSynthesizer.cs
- MatchAllMessageFilter.cs
- RangeValuePattern.cs
- SystemNetHelpers.cs
- EditorPartCollection.cs
- UnsafeNativeMethodsCLR.cs
- ReaderWriterLock.cs
- PeerReferralPolicy.cs
- IndentedTextWriter.cs
- SHA1Managed.cs
- FamilyTypeface.cs
- PerformanceCounterPermissionAttribute.cs
- AssociatedControlConverter.cs
- XmlName.cs
- MappingSource.cs
- QueryOptionExpression.cs
- XmlValidatingReader.cs
- Merger.cs
- PartialArray.cs
- cookieexception.cs
- WinEventHandler.cs
- LiteralLink.cs
- IfAction.cs
- CompressionTransform.cs
- ApplicationManager.cs
- EventEntry.cs
- HwndStylusInputProvider.cs
- BooleanProjectedSlot.cs
- GenericXmlSecurityToken.cs
- GroupBox.cs
- StrongTypingException.cs
- DataGridViewCellFormattingEventArgs.cs
- SubMenuStyle.cs
- Win32PrintDialog.cs
- StackSpiller.Temps.cs
- LabelExpression.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- ArgumentNullException.cs
- KeyProperty.cs
- SetterBase.cs
- InvokeDelegate.cs