Files
Dec2017-Script-Dump/mscorlib/System/Runtime/Remoting/Channels/ISecurableChannel.cs
T
2026-06-04 11:42:34 +02:00

17 lines
770 B
C#

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