Files
2026-04-10 22:50:51 +02:00

24 lines
876 B
C#

using System;
using Cpp2IlInjected;
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: 0x020004E8 RID: 1256
[Token(Token = "0x20004E8")]
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: 0x170005A2 RID: 1442
// (set) Token: 0x06002880 RID: 10368
[Token(Token = "0x170005A2")]
bool IsSecured
{
[Token(Token = "0x6002880")]
[Address(Slot = "0")]
set;
}
}
}