using System;
namespace System.Runtime.Remoting.Channels
{
/// The contains one property, , which gets or sets a Boolean value that indicates whether the current channel is secure.
// Token: 0x020003AB RID: 939
public interface ISecurableChannel
{
/// Gets or sets a Boolean value that indicates whether the current channel is secure.
/// A Boolean value that indicates whether the current channel is secure.
// Token: 0x1700070A RID: 1802
// (get) Token: 0x060025B8 RID: 9656
// (set) Token: 0x060025B9 RID: 9657
bool IsSecured { get; set; }
}
}