Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Dispatcher / CompositeDispatchFormatter.cs / 1305376 / CompositeDispatchFormatter.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 CompositeDispatchFormatter : IDispatchMessageFormatter { IDispatchMessageFormatter reply; IDispatchMessageFormatter request; public CompositeDispatchFormatter(IDispatchMessageFormatter request, IDispatchMessageFormatter reply) { this.request = request; this.reply = reply; } public void DeserializeRequest(Message message, object[] parameters) { this.request.DeserializeRequest(message, parameters); } public Message SerializeReply(MessageVersion messageVersion, object[] parameters, object result) { return this.reply.SerializeReply(messageVersion, parameters, result); } } } // 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
- SqlNotificationRequest.cs
- SafeBitVector32.cs
- Figure.cs
- ColumnPropertiesGroup.cs
- SoapEnumAttribute.cs
- ObjectConverter.cs
- OdbcTransaction.cs
- SubordinateTransaction.cs
- ModelTreeEnumerator.cs
- CodeDomComponentSerializationService.cs
- Error.cs
- ITextView.cs
- BrowserTree.cs
- ElementProxy.cs
- StreamAsIStream.cs
- SqlInternalConnectionSmi.cs
- EndPoint.cs
- SolidBrush.cs
- WebControlsSection.cs
- Size3D.cs
- HScrollBar.cs
- IntersectQueryOperator.cs
- TreePrinter.cs
- BooleanProjectedSlot.cs
- SafeNativeMethods.cs
- GridItemCollection.cs
- PrintPreviewDialog.cs
- ColorBlend.cs
- GetRecipientRequest.cs
- HttpSessionStateWrapper.cs
- SslStreamSecurityBindingElement.cs
- FamilyTypeface.cs
- Lease.cs
- PolyQuadraticBezierSegment.cs
- ButtonRenderer.cs
- PrintDocument.cs
- SchemaTableColumn.cs
- CorrelationManager.cs
- XmlBinaryWriterSession.cs
- XsltException.cs
- SamlSubject.cs
- HMACSHA1.cs
- OleStrCAMarshaler.cs
- CopyNamespacesAction.cs
- HiddenFieldDesigner.cs
- Pen.cs
- XamlSerializerUtil.cs
- PreviewPrintController.cs
- Resources.Designer.cs
- SiteMapDataSourceView.cs
- DefaultSettingsSection.cs
- Journal.cs
- ConfigurationElementProperty.cs
- Vars.cs
- SmtpSection.cs
- PropagatorResult.cs
- ConfigurationPermission.cs
- DataException.cs
- WorkflowDebuggerSteppingAttribute.cs
- ConstraintConverter.cs
- Rotation3DKeyFrameCollection.cs
- dbenumerator.cs
- ActiveXMessageFormatter.cs
- Fx.cs
- SBCSCodePageEncoding.cs
- BaseTemplatedMobileComponentEditor.cs
- XsltArgumentList.cs
- FileVersion.cs
- StylusTip.cs
- VectorKeyFrameCollection.cs
- ProcessProtocolHandler.cs
- PinnedBufferMemoryStream.cs
- HandledMouseEvent.cs
- ScriptControlDescriptor.cs
- SqlGenericUtil.cs
- TableItemPattern.cs
- BatchServiceHost.cs
- NamedObject.cs
- ImmutablePropertyDescriptorGridEntry.cs
- TabItemAutomationPeer.cs
- DockProviderWrapper.cs
- newitemfactory.cs
- XslAst.cs
- FilterQuery.cs
- ContractType.cs
- PieceDirectory.cs
- DecimalStorage.cs
- _NativeSSPI.cs
- SoapExtension.cs
- CodeGroup.cs
- ReadOnlyDataSource.cs
- EditorPart.cs
- GlyphInfoList.cs
- XmlDataLoader.cs
- CodeGen.cs
- EntityDataSourceChangedEventArgs.cs
- SplitterEvent.cs
- ReflectionTypeLoadException.cs
- DBSqlParserTable.cs
- TextEffectResolver.cs