| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //-----------------------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- namespace System.ServiceModel.Configuration
- {
- using System.ServiceModel.Channels;
- public interface IBindingConfigurationElement
- {
- TimeSpan CloseTimeout
- {
- get;
- }
- string Name
- {
- get;
- }
- TimeSpan OpenTimeout
- {
- get;
- }
- TimeSpan ReceiveTimeout
- {
- get;
- }
- TimeSpan SendTimeout
- {
- get;
- }
- void ApplyConfiguration(Binding binding);
- }
- }
|