This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Specifies whether the template can be bound one way or two ways.</summary>
// Token: 0x020000EA RID: 234
[Token(Token = "0x20000EA")]
public enum BindingDirection
{
/// <summary>The template can only accept property values. Used with a generic <see cref="T:System.Web.UI.ITemplate" />.</summary>
// Token: 0x0400044F RID: 1103
[Token(Token = "0x400044F")]
OneWay,
/// <summary>The template can accept and expose property values. Used with an <see cref="T:System.Web.UI.IBindableTemplate" />.</summary>
// Token: 0x04000450 RID: 1104
[Token(Token = "0x4000450")]
TwoWay
}
}