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
- ObjectHelper.cs
- PropertyFilterAttribute.cs
- NumericUpDownAcceleration.cs
- NullableConverter.cs
- SchemaCompiler.cs
- ToolStripSeparator.cs
- OverrideMode.cs
- RefreshPropertiesAttribute.cs
- HwndKeyboardInputProvider.cs
- CommentGlyph.cs
- CodeDomDecompiler.cs
- BlockUIContainer.cs
- ProxyOperationRuntime.cs
- ModelPropertyDescriptor.cs
- RefreshEventArgs.cs
- NativeWindow.cs
- RtfControls.cs
- TextRangeEdit.cs
- IssuanceLicense.cs
- TextFindEngine.cs
- FileDetails.cs
- SQLDoubleStorage.cs
- NumericPagerField.cs
- UserControl.cs
- SplayTreeNode.cs
- Storyboard.cs
- InternalSafeNativeMethods.cs
- DesignerLoader.cs
- ProcessHostConfigUtils.cs
- CertificateElement.cs
- SeparatorAutomationPeer.cs
- ToolStripItemClickedEventArgs.cs
- ProcessHostMapPath.cs
- SessionStateSection.cs
- Geometry3D.cs
- XsltArgumentList.cs
- RSAPKCS1SignatureFormatter.cs
- ValidationResults.cs
- Literal.cs
- SafeRsaProviderHandle.cs
- SQLResource.cs
- DetailsViewPagerRow.cs
- InkCanvasInnerCanvas.cs
- DifferencingCollection.cs
- TextCollapsingProperties.cs
- DateTimeStorage.cs
- DbDataReader.cs
- ButtonRenderer.cs
- DecoderReplacementFallback.cs
- ILGen.cs
- DataTrigger.cs
- DbBuffer.cs
- TypeUsageBuilder.cs
- Int16.cs
- EntityParameterCollection.cs
- SqlConnectionHelper.cs
- CacheForPrimitiveTypes.cs
- IdentityNotMappedException.cs
- SafeProcessHandle.cs
- DynamicMethod.cs
- Emitter.cs
- KoreanLunisolarCalendar.cs
- NativeMethods.cs
- DataServiceQueryOfT.cs
- ISAPIRuntime.cs
- DecimalConverter.cs
- HttpHandler.cs
- ZipIOExtraFieldPaddingElement.cs
- SoapReflectionImporter.cs
- WCFBuildProvider.cs
- ITreeGenerator.cs
- DeobfuscatingStream.cs
- SapiRecognizer.cs
- FormViewDeletedEventArgs.cs
- ExpressionParser.cs
- PersonalizationAdministration.cs
- TabletCollection.cs
- RectAnimationBase.cs
- InstanceDataCollectionCollection.cs
- DataGridParentRows.cs
- DefaultCommandConverter.cs
- WebPartDisplayModeCollection.cs
- SafeThemeHandle.cs
- EasingKeyFrames.cs
- LinqDataSourceContextEventArgs.cs
- XPathNodePointer.cs
- NodeInfo.cs
- VariableElement.cs
- DesignerVerb.cs
- DecimalKeyFrameCollection.cs
- ArrangedElement.cs
- ScrollChrome.cs
- Dump.cs
- XPathDocumentNavigator.cs
- XAMLParseException.cs
- TransformConverter.cs
- ProcessHostFactoryHelper.cs
- GACMembershipCondition.cs
- XmlDocumentSurrogate.cs
- ExpandedWrapper.cs