Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000504 RID: 1284
[Token(Token = "0x2000504")]
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: 0x1700061A RID: 1562
// (set) Token: 0x06002A8D RID: 10893
[Token(Token = "0x1700061A")]
bool IsSecured
{
[Token(Token = "0x6002A8D")]
[Address(Slot = "0")]
set;
}
}
}