Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000135 RID: 309
[Token(Token = "0x2000135")]
public interface IIntellisenseBuilder
{
/// <summary>Gets a localized name.</summary>
/// <returns>A localized name.</returns>
// Token: 0x1700016C RID: 364
// (get) Token: 0x060007B8 RID: 1976
[Token(Token = "0x1700016C")]
string Name
{
[Token(Token = "0x60007B8")]
[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: 0x060007B9 RID: 1977
[Token(Token = "0x60007B9")]
[Address(Slot = "1")]
bool Show(string language, string value, ref string newValue);
}
}