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

35 lines
1.2 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides an interface to facilitate the retrieval of the builder's name and to display the builder.</summary>
// Token: 0x02000139 RID: 313
[Token(Token = "0x2000139")]
public interface IIntellisenseBuilder
{
/// <summary>Gets a localized name.</summary>
/// <returns>A localized name.</returns>
// Token: 0x17000170 RID: 368
// (get) Token: 0x060007CE RID: 1998
[Token(Token = "0x17000170")]
string Name
{
[Token(Token = "0x60007CE")]
[Address(Slot = "0")]
get;
}
/// <summary>Shows the builder.</summary>
/// <param name="language">The language service that is calling the builder.</param>
/// <param name="value">The expression being edited.</param>
/// <param name="newValue">The new value.</param>
/// <returns>
/// <see langword="true" /> if the value should be replaced with <paramref name="newValue" />; otherwise, <see langword="false" /> (if the user cancels, for example).</returns>
// Token: 0x060007CF RID: 1999
[Token(Token = "0x60007CF")]
[Address(Slot = "1")]
bool Show(string language, string value, ref string newValue);
}
}