Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Runtime / Serialization / Formatters / SoapMessage.cs / 1305376 / SoapMessage.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SoapMessage ** ** ** Purpose: Interface For Soap Method Call ** ** ===========================================================*/ #if FEATURE_REMOTING 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;} } } } #endif // FEATURE_REMOTING // 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
- StaticFileHandler.cs
- Style.cs
- AssociationProvider.cs
- InheritedPropertyChangedEventArgs.cs
- DomNameTable.cs
- AnnotationResourceChangedEventArgs.cs
- TableChangeProcessor.cs
- MenuTracker.cs
- _ProxyRegBlob.cs
- ExpandoClass.cs
- ReflectionUtil.cs
- XmlComplianceUtil.cs
- ObjectRef.cs
- TrackingServices.cs
- WindowsIPAddress.cs
- SimpleTextLine.cs
- SymbolTable.cs
- WCFModelStrings.Designer.cs
- DBConnectionString.cs
- GlyphsSerializer.cs
- ViewSimplifier.cs
- EntityContainerEmitter.cs
- CompiledQuery.cs
- EventItfInfo.cs
- UIntPtr.cs
- ReceiveCompletedEventArgs.cs
- TableChangeProcessor.cs
- XmlStringTable.cs
- BinaryObjectReader.cs
- ApplicationDirectory.cs
- FormViewUpdateEventArgs.cs
- XamlFigureLengthSerializer.cs
- SoapFault.cs
- UnsafeNativeMethods.cs
- CharStorage.cs
- SingleObjectCollection.cs
- ResponseStream.cs
- Configuration.cs
- EpmContentSerializer.cs
- WindowsListViewItemStartMenu.cs
- SignatureGenerator.cs
- _ChunkParse.cs
- Profiler.cs
- _NegoStream.cs
- SettingsSavedEventArgs.cs
- AccessKeyManager.cs
- dsa.cs
- Lasso.cs
- Types.cs
- ActivityBindForm.cs
- FlowDocument.cs
- ItemDragEvent.cs
- OptionalColumn.cs
- FloaterBaseParagraph.cs
- ExtendedProperty.cs
- ExpressionBuilderContext.cs
- GatewayDefinition.cs
- CLSCompliantAttribute.cs
- ModuleBuilder.cs
- ReferencedType.cs
- StoreAnnotationsMap.cs
- RawStylusInputCustomData.cs
- webeventbuffer.cs
- PathGradientBrush.cs
- DataServiceRequestOfT.cs
- CompiledXpathExpr.cs
- HttpRequestCacheValidator.cs
- SmtpMail.cs
- XmlSchema.cs
- EmptyQuery.cs
- SrgsToken.cs
- InstanceView.cs
- Array.cs
- FunctionMappingTranslator.cs
- CodeGeneratorOptions.cs
- ForAllOperator.cs
- HostProtectionPermission.cs
- EncodingFallbackAwareXmlTextWriter.cs
- DetailsViewUpdateEventArgs.cs
- ConfigXmlElement.cs
- ListDictionaryInternal.cs
- ChtmlSelectionListAdapter.cs
- Bitmap.cs
- CookieParameter.cs
- BezierSegment.cs
- ResourceReferenceExpressionConverter.cs
- TableParagraph.cs
- FamilyCollection.cs
- NamespaceTable.cs
- QueryableDataSourceView.cs
- Regex.cs
- SiteMapDataSourceView.cs
- DataGridViewCell.cs
- _CacheStreams.cs
- DesignerObjectListAdapter.cs
- GridViewRow.cs
- XmlSchemaAll.cs
- StreamGeometry.cs
- ConfigurationValidatorAttribute.cs
- ProxyWebPartConnectionCollection.cs