ExtensionPartMetadata Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ExtensionPartMetadata(String, IReadOnlyDictionary<String,String>) |
Initializes a new instance of the ExtensionPartMetadata class. |
ExtensionPartMetadata(String, IReadOnlyDictionary<String,String>, JObject) |
Initializes a new instance of the ExtensionPartMetadata class. |
ExtensionPartMetadata(String, IReadOnlyDictionary<String,String>)
Initializes a new instance of the ExtensionPartMetadata class.
public ExtensionPartMetadata (string name, System.Collections.Generic.IReadOnlyDictionary<string,string> values);
new Microsoft.Internal.VisualStudio.Extensibility.Framework.ExtensionPartMetadata : string * System.Collections.Generic.IReadOnlyDictionary<string, string> -> Microsoft.Internal.VisualStudio.Extensibility.Framework.ExtensionPartMetadata
Public Sub New (name As String, values As IReadOnlyDictionary(Of String, String))
Parameters
- name
- String
Name of the attribute type.
- values
- IReadOnlyDictionary<String,String>
Key value pair for named arguments.
Applies to
ExtensionPartMetadata(String, IReadOnlyDictionary<String,String>, JObject)
Initializes a new instance of the ExtensionPartMetadata class.
public ExtensionPartMetadata (string name, System.Collections.Generic.IReadOnlyDictionary<string,string> values, Newtonsoft.Json.Linq.JObject valuesObject);
new Microsoft.Internal.VisualStudio.Extensibility.Framework.ExtensionPartMetadata : string * System.Collections.Generic.IReadOnlyDictionary<string, string> * Newtonsoft.Json.Linq.JObject -> Microsoft.Internal.VisualStudio.Extensibility.Framework.ExtensionPartMetadata
Public Sub New (name As String, values As IReadOnlyDictionary(Of String, String), valuesObject As JObject)
Parameters
- name
- String
Name of the attribute type.
- values
- IReadOnlyDictionary<String,String>
Key value pair for named arguments.
- valuesObject
- Newtonsoft.Json.Linq.JObject
JObject representing the values dictionary.