Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Dispatcher / CompositeClientFormatter.cs / 1 / CompositeClientFormatter.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Dispatcher { using System; using System.ServiceModel; using System.ServiceModel.Channels; using System.ServiceModel.Description; class CompositeClientFormatter : IClientMessageFormatter { IClientMessageFormatter reply; IClientMessageFormatter request; public CompositeClientFormatter(IClientMessageFormatter request, IClientMessageFormatter reply) { this.request = request; this.reply = reply; } public object DeserializeReply(Message message, object[] parameters) { return this.reply.DeserializeReply(message, parameters); } public Message SerializeRequest(MessageVersion messageVersion, object[] parameters) { return this.request.SerializeRequest(messageVersion, parameters); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UrlPath.cs
- RtfToXamlReader.cs
- DataServiceException.cs
- TableItemStyle.cs
- MemoryFailPoint.cs
- BindingObserver.cs
- AssemblyCollection.cs
- DefaultMergeHelper.cs
- EntitySqlQueryBuilder.cs
- Propagator.Evaluator.cs
- IISMapPath.cs
- SessionStateModule.cs
- SynchronizationLockException.cs
- TransformationRules.cs
- AxisAngleRotation3D.cs
- X509UI.cs
- EventProperty.cs
- GlobalizationAssembly.cs
- LockCookie.cs
- CodeMemberProperty.cs
- PropertyValueUIItem.cs
- TaskFileService.cs
- ListViewUpdateEventArgs.cs
- DomNameTable.cs
- SaveFileDialog.cs
- BasicViewGenerator.cs
- XamlGridLengthSerializer.cs
- WebPartDisplayModeCollection.cs
- DateBoldEvent.cs
- HostingEnvironmentException.cs
- RightsManagementEncryptedStream.cs
- RequestCache.cs
- FixUp.cs
- LoginName.cs
- Guid.cs
- DataGridViewSelectedCellCollection.cs
- ContentElement.cs
- CqlBlock.cs
- listviewsubitemcollectioneditor.cs
- NameValuePermission.cs
- TextProviderWrapper.cs
- MessageBuilder.cs
- CompilationUtil.cs
- SudsCommon.cs
- IResourceProvider.cs
- DispatchWrapper.cs
- FontCollection.cs
- FixedSOMLineCollection.cs
- UnsafeNativeMethods.cs
- CryptoConfig.cs
- BinaryCommonClasses.cs
- Span.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- HttpClientProtocol.cs
- LayoutTableCell.cs
- InputGestureCollection.cs
- XsdValidatingReader.cs
- PathSegmentCollection.cs
- ECDsaCng.cs
- BinaryObjectWriter.cs
- DataGridViewIntLinkedList.cs
- ContextMenuService.cs
- VectorCollection.cs
- Vector3DValueSerializer.cs
- TypeConverterHelper.cs
- ClientOperation.cs
- Directory.cs
- XPathBuilder.cs
- HandlerWithFactory.cs
- PermissionSetTriple.cs
- AutomationPeer.cs
- ProfilePropertyNameValidator.cs
- OdbcTransaction.cs
- GenericEnumerator.cs
- ToolTip.cs
- TimeoutHelper.cs
- Size3D.cs
- Timer.cs
- GorillaCodec.cs
- AsymmetricAlgorithm.cs
- EnumValAlphaComparer.cs
- AppearanceEditorPart.cs
- OleDbConnectionInternal.cs
- ScaleTransform3D.cs
- SetStoryboardSpeedRatio.cs
- PropertyTabChangedEvent.cs
- RangeValuePattern.cs
- UdpDiscoveryEndpointProvider.cs
- JsonEncodingStreamWrapper.cs
- FunctionNode.cs
- WebControlAdapter.cs
- ReturnType.cs
- DataTemplateKey.cs
- TrustManagerMoreInformation.cs
- Light.cs
- AttributeData.cs
- XmlCharacterData.cs
- ApplicationServiceHelper.cs
- SimpleWebHandlerParser.cs
- ColumnHeader.cs