Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / ChannelManagerBase.cs / 1 / ChannelManagerBase.cs
//---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------------------- namespace System.ServiceModel.Channels { using System; using System.ServiceModel; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Runtime.Serialization; using System.ServiceModel.Diagnostics; using System.Diagnostics; public abstract class ChannelManagerBase : CommunicationObject, IDefaultCommunicationTimeouts { protected ChannelManagerBase() { } protected abstract TimeSpan DefaultReceiveTimeout { get; } protected abstract TimeSpan DefaultSendTimeout { get; } internal TimeSpan InternalReceiveTimeout { get { return this.DefaultReceiveTimeout; } } internal TimeSpan InternalSendTimeout { get { return this.DefaultSendTimeout; } } TimeSpan IDefaultCommunicationTimeouts.CloseTimeout { get { return this.DefaultCloseTimeout; } } TimeSpan IDefaultCommunicationTimeouts.OpenTimeout { get { return this.DefaultOpenTimeout; } } TimeSpan IDefaultCommunicationTimeouts.ReceiveTimeout { get { return this.DefaultReceiveTimeout; } } TimeSpan IDefaultCommunicationTimeouts.SendTimeout { get { return this.DefaultSendTimeout; } } internal Exception CreateChannelTypeNotSupportedException(Type type) { return new ArgumentException(SR.GetString(SR.ChannelTypeNotSupported, type), "TChannel"); } } } // 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
- Stackframe.cs
- PasswordTextNavigator.cs
- InfoCardProofToken.cs
- CriticalExceptions.cs
- ExceptionDetail.cs
- EncryptedData.cs
- EncryptedKeyHashIdentifierClause.cs
- Matrix3DValueSerializer.cs
- ActivityCodeGenerator.cs
- FontFamilyConverter.cs
- DelegateArgumentValue.cs
- TextProperties.cs
- WindowsListViewItemCheckBox.cs
- COAUTHINFO.cs
- SafeUserTokenHandle.cs
- ConfigXmlSignificantWhitespace.cs
- SamlEvidence.cs
- JoinCqlBlock.cs
- ProviderSettings.cs
- EpmSyndicationContentSerializer.cs
- SessionStateUtil.cs
- _HTTPDateParse.cs
- OdbcConnectionHandle.cs
- OleDbErrorCollection.cs
- ColorAnimationBase.cs
- CngAlgorithmGroup.cs
- InstanceStoreQueryResult.cs
- UnsafeNativeMethods.cs
- XmlValueConverter.cs
- KeyProperty.cs
- Int32RectValueSerializer.cs
- TextBox.cs
- VersionPair.cs
- EmptyReadOnlyDictionaryInternal.cs
- LZCodec.cs
- AssemblyAssociatedContentFileAttribute.cs
- RoleGroupCollection.cs
- CodeCompileUnit.cs
- AttributeParameterInfo.cs
- FamilyTypefaceCollection.cs
- XmlCountingReader.cs
- ConnectionPointGlyph.cs
- DataTableNewRowEvent.cs
- PropertyGridEditorPart.cs
- SqlDependencyListener.cs
- RequestCache.cs
- WebBrowser.cs
- FrameworkContentElement.cs
- XdrBuilder.cs
- WebPartUtil.cs
- GridPatternIdentifiers.cs
- xml.cs
- SignalGate.cs
- contentDescriptor.cs
- InternalConfigSettingsFactory.cs
- BindingSource.cs
- PingReply.cs
- RowUpdatingEventArgs.cs
- OuterGlowBitmapEffect.cs
- IdentityHolder.cs
- VariableModifiersHelper.cs
- HitTestFilterBehavior.cs
- WindowsRebar.cs
- ObjectAnimationBase.cs
- MenuItem.cs
- AccessDataSource.cs
- QueueProcessor.cs
- CryptographicAttribute.cs
- EntityProxyFactory.cs
- QilUnary.cs
- Instrumentation.cs
- EntityDataSourceView.cs
- FlagsAttribute.cs
- ExtensionDataReader.cs
- SingleObjectCollection.cs
- SurrogateSelector.cs
- Constants.cs
- SHA384Managed.cs
- AffineTransform3D.cs
- StringUtil.cs
- WriteFileContext.cs
- TreeViewAutomationPeer.cs
- CharEntityEncoderFallback.cs
- BoundColumn.cs
- RubberbandSelector.cs
- SQLGuidStorage.cs
- HtmlButton.cs
- LinkConverter.cs
- XPathAncestorIterator.cs
- SoapObjectWriter.cs
- RefreshPropertiesAttribute.cs
- COSERVERINFO.cs
- XAMLParseException.cs
- EdmItemCollection.cs
- HandlerWithFactory.cs
- CultureSpecificStringDictionary.cs
- DocumentationServerProtocol.cs
- StateMachineSubscription.cs
- CursorConverter.cs
- CompressedStack.cs