Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- SurrogateSelector.cs
- ButtonRenderer.cs
- PublishLicense.cs
- BaseAddressPrefixFilterElementCollection.cs
- EdmValidator.cs
- PolygonHotSpot.cs
- wgx_sdk_version.cs
- ProjectedSlot.cs
- RenderDataDrawingContext.cs
- TreeViewItemAutomationPeer.cs
- AttributeUsageAttribute.cs
- SemanticResolver.cs
- SecurityHeaderElementInferenceEngine.cs
- FrameworkElementAutomationPeer.cs
- XamlFilter.cs
- AssemblyAssociatedContentFileAttribute.cs
- JapaneseLunisolarCalendar.cs
- Adorner.cs
- PolicyValidationException.cs
- CodeAttachEventStatement.cs
- CuspData.cs
- GlyphRunDrawing.cs
- objectresult_tresulttype.cs
- WebPartConnectVerb.cs
- EventLogger.cs
- ToolStrip.cs
- ControlValuePropertyAttribute.cs
- PowerModeChangedEventArgs.cs
- TrackingProfileSerializer.cs
- Exceptions.cs
- DataControlLinkButton.cs
- WorkflowOwnershipException.cs
- CachingHintValidation.cs
- XmlQueryTypeFactory.cs
- UserMapPath.cs
- ScriptingRoleServiceSection.cs
- OnOperation.cs
- WindowsImpersonationContext.cs
- TraceHwndHost.cs
- DataGridCommandEventArgs.cs
- ResolveDuplexCD1AsyncResult.cs
- CodeCatchClause.cs
- HebrewNumber.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- SessionStateUtil.cs
- HttpServerUtilityWrapper.cs
- TextContainerHelper.cs
- VisemeEventArgs.cs
- TextPointer.cs
- DataGridLengthConverter.cs
- MediaContextNotificationWindow.cs
- WebPartCatalogCloseVerb.cs
- DbMetaDataCollectionNames.cs
- HostingPreferredMapPath.cs
- SmtpClient.cs
- ClusterSafeNativeMethods.cs
- OracleDataReader.cs
- ConfigurationManagerHelper.cs
- SoapReflectionImporter.cs
- Deflater.cs
- ProcessThreadCollection.cs
- BuildProvider.cs
- SecurityTokenTypes.cs
- Stroke.cs
- EtwTrace.cs
- WebScriptMetadataMessageEncodingBindingElement.cs
- DataGridViewRow.cs
- ScriptServiceAttribute.cs
- ArrayConverter.cs
- FontSourceCollection.cs
- SegmentInfo.cs
- TemplatePropertyEntry.cs
- NotifyIcon.cs
- DataQuery.cs
- AnnotationResource.cs
- relpropertyhelper.cs
- PropertiesTab.cs
- DivideByZeroException.cs
- ControlCodeDomSerializer.cs
- ZipPackage.cs
- SqlSupersetValidator.cs
- StackOverflowException.cs
- FunctionParameter.cs
- Membership.cs
- Int32RectConverter.cs
- altserialization.cs
- StructuralType.cs
- LinqDataSourceInsertEventArgs.cs
- WindowsSolidBrush.cs
- ValidationError.cs
- XPathPatternBuilder.cs
- BeginStoryboard.cs
- SqlDataSourceAdvancedOptionsForm.cs
- SafeFileMappingHandle.cs
- SessionState.cs
- DocumentXPathNavigator.cs
- GridViewHeaderRowPresenter.cs
- BitmapImage.cs
- OleDbReferenceCollection.cs
- ADMembershipUser.cs