SettingInfo(String, String, String, String, JObject, Boolean, Boolean) 构造函数

定义

初始化 SettingInfo 类的新实例。

public SettingInfo (string? moniker, string localizedName, string localizedDescription, string searchKeywords, Newtonsoft.Json.Linq.JObject? jsonSchema, bool isWritable, bool isRemotable = false);
new Microsoft.VisualStudio.RpcContracts.Settings.SettingInfo : string * string * string * string * Newtonsoft.Json.Linq.JObject * bool * bool -> Microsoft.VisualStudio.RpcContracts.Settings.SettingInfo
Public Sub New (moniker As String, localizedName As String, localizedDescription As String, searchKeywords As String, jsonSchema As JObject, isWritable As Boolean, Optional isRemotable As Boolean = false)

参数

moniker
String

设置名字对象。

localizedName
String

设置的本地化名称(如果有);否则为 null。

localizedDescription
String

设置的本地化说明(如果有);否则为 null。

searchKeywords
String

设置的搜索关键字(如果有的话);否则为 null。

jsonSchema
Newtonsoft.Json.Linq.JObject

设置的 JSON 架构。

isWritable
Boolean

一个值,该值指示是否可以在当前上下文中修改设置。

isRemotable
Boolean

一个值,该值指示设置是否在连接时远程寻址。

适用于