Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / DelegatingMessage.cs / 1 / DelegatingMessage.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Channels { using System.Xml; using System.ServiceModel.Channels; abstract class DelegatingMessage : Message { Message innerMessage; protected DelegatingMessage(Message innerMessage) { if (innerMessage == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("innerMessage"); } this.innerMessage = innerMessage; } public override bool IsEmpty { get { return this.innerMessage.IsEmpty; } } public override bool IsFault { get { return this.innerMessage.IsFault; } } public override MessageHeaders Headers { get { return this.innerMessage.Headers; } } public override MessageProperties Properties { get { return this.innerMessage.Properties; } } public override MessageVersion Version { get { return this.innerMessage.Version; } } protected Message InnerMessage { get { return this.innerMessage; } } protected override void OnClose() { base.OnClose(); this.innerMessage.Close(); } protected override void OnWriteStartEnvelope(XmlDictionaryWriter writer) { this.innerMessage.WriteStartEnvelope(writer); } protected override void OnWriteStartHeaders(XmlDictionaryWriter writer) { this.innerMessage.WriteStartHeaders(writer); } protected override void OnWriteStartBody(XmlDictionaryWriter writer) { this.innerMessage.WriteStartBody(writer); } protected override void OnWriteBodyContents(XmlDictionaryWriter writer) { this.innerMessage.WriteBodyContents(writer); } protected override string OnGetBodyAttribute(string localName, string ns) { return this.innerMessage.GetBodyAttribute(localName, ns); } protected override void OnBodyToString(XmlDictionaryWriter writer) { this.innerMessage.BodyToString(writer); } } } // 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
- AppDomain.cs
- VirtualDirectoryMapping.cs
- GridViewUpdatedEventArgs.cs
- LinqMaximalSubtreeNominator.cs
- WindowsBrush.cs
- SqlUnionizer.cs
- EdgeProfileValidation.cs
- SoapIgnoreAttribute.cs
- TimeSpanOrInfiniteConverter.cs
- CryptoApi.cs
- SmtpFailedRecipientsException.cs
- SiteOfOriginPart.cs
- RSAPKCS1SignatureDeformatter.cs
- Switch.cs
- FixedSOMLineCollection.cs
- DataPointer.cs
- BatchServiceHost.cs
- TextEditorSelection.cs
- NamespaceImport.cs
- HttpApplicationFactory.cs
- ControlOperationBehavior.cs
- LogicalTreeHelper.cs
- BitArray.cs
- AttachedPropertyBrowsableAttribute.cs
- UdpChannelFactory.cs
- XmlSiteMapProvider.cs
- Assembly.cs
- QilLiteral.cs
- SystemPens.cs
- SizeLimitedCache.cs
- SourceChangedEventArgs.cs
- ValueSerializer.cs
- PartialClassGenerationTask.cs
- reliableinputsessionchannel.cs
- OlePropertyStructs.cs
- FtpWebRequest.cs
- GestureRecognizer.cs
- TemplateBindingExtensionConverter.cs
- MediaScriptCommandRoutedEventArgs.cs
- ColorTransform.cs
- HttpDictionary.cs
- SelectionWordBreaker.cs
- CombinedHttpChannel.cs
- DataAdapter.cs
- ConfigurationLocationCollection.cs
- DropSource.cs
- FileDetails.cs
- BooleanFunctions.cs
- ContentElement.cs
- ObjectManager.cs
- PeerContact.cs
- HttpGetClientProtocol.cs
- SHA512Cng.cs
- TemplateKeyConverter.cs
- MenuAdapter.cs
- RecognizerStateChangedEventArgs.cs
- IList.cs
- GifBitmapEncoder.cs
- DiagnosticsConfigurationHandler.cs
- ScrollEventArgs.cs
- DeferredElementTreeState.cs
- CodeConstructor.cs
- MiniLockedBorderGlyph.cs
- OrthographicCamera.cs
- RawContentTypeMapper.cs
- UnsignedPublishLicense.cs
- DataGridViewRowCancelEventArgs.cs
- CommandEventArgs.cs
- ModelVisual3D.cs
- WindowsGraphicsCacheManager.cs
- DataKey.cs
- DateTimeFormat.cs
- RectangleConverter.cs
- XmlIterators.cs
- TextDecorationCollection.cs
- WmlObjectListAdapter.cs
- MediaElementAutomationPeer.cs
- SqlRewriteScalarSubqueries.cs
- Symbol.cs
- Brush.cs
- MenuBase.cs
- ObjectConverter.cs
- AuthenticationServiceManager.cs
- EnumDataContract.cs
- WebPermission.cs
- RemoteWebConfigurationHostServer.cs
- Accessible.cs
- MessageDecoder.cs
- WpfMemberInvoker.cs
- SmtpMail.cs
- SkewTransform.cs
- UriSectionReader.cs
- InputGestureCollection.cs
- HtmlHistory.cs
- LogLogRecord.cs
- WindowsListViewItemCheckBox.cs
- QilUnary.cs
- FontStyles.cs
- JumpList.cs
- DataFormats.cs