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