Share via


EntityIdentity Constructors

Definition

Overloads

EntityIdentity(IEnumerable<KeyValuePair<String,String>>)

Initializes a new instance of the EntityIdentity class.

EntityIdentity(EntityIdentity, IEnumerable<KeyValuePair<String,String>>)

Initializes a new instance of the EntityIdentity class.

EntityIdentity(String, String)

Initializes a new instance of the EntityIdentity class.

EntityIdentity(EntityIdentity, String, String)

Initializes a new instance of the EntityIdentity class.

EntityIdentity(IEnumerable<KeyValuePair<String,String>>)

Initializes a new instance of the EntityIdentity class.

public EntityIdentity (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string>> identityValues);
new Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity : seq<System.Collections.Generic.KeyValuePair<string, string>> -> Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity
Public Sub New (identityValues As IEnumerable(Of KeyValuePair(Of String, String)))

Parameters

identityValues
IEnumerable<KeyValuePair<String,String>>

The set of key value pairs to compose a new identity.

Applies to

EntityIdentity(EntityIdentity, IEnumerable<KeyValuePair<String,String>>)

Initializes a new instance of the EntityIdentity class.

public EntityIdentity (Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity context, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string>> localValues);
new Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity : Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity * seq<System.Collections.Generic.KeyValuePair<string, string>> -> Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity
Public Sub New (context As EntityIdentity, localValues As IEnumerable(Of KeyValuePair(Of String, String)))

Parameters

context
EntityIdentity

The identity provides the identity of the context of the current item

localValues
IEnumerable<KeyValuePair<String,String>>

Additional values to be appended to the context.

Applies to

EntityIdentity(String, String)

Initializes a new instance of the EntityIdentity class.

public EntityIdentity (string key, string value);
new Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity : string * string -> Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity
Public Sub New (key As String, value As String)

Parameters

key
String

The name of the key.

value
String

The value.

Applies to

EntityIdentity(EntityIdentity, String, String)

Initializes a new instance of the EntityIdentity class.

public EntityIdentity (Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity context, string key, string value);
new Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity : Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity * string * string -> Microsoft.VisualStudio.ProjectSystem.Query.EntityIdentity
Public Sub New (context As EntityIdentity, key As String, value As String)

Parameters

context
EntityIdentity

The identity provides the identity of the context of the current item

key
String

The name of the additional key to be appended to the identity.

value
String

The value of the new value pair in the identity.

Applies to