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