AttributeDictionary.Add Method
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.
- Source:
- AttributeDictionary.cs
- Source:
- AttributeDictionary.cs
- Source:
- AttributeDictionary.cs
Adds an item to the ICollection<T>.
public:
virtual void Add(System::Collections::Generic::KeyValuePair<System::String ^, System::String ^> item);
C#
public void Add (System.Collections.Generic.KeyValuePair<string,string> item);
C#
public void Add (System.Collections.Generic.KeyValuePair<string,string?> item);
abstract member Add : System.Collections.Generic.KeyValuePair<string, string> -> unit
override this.Add : System.Collections.Generic.KeyValuePair<string, string> -> unit
Public Sub Add (item As KeyValuePair(Of String, String))
Parameters
- item
- KeyValuePair<String,String>
Implements
Applies to
ASP.NET Core 9.0 والإصدارات الأخرى
منتج | الإصدارات |
---|---|
ASP.NET Core | 1.0, 1.1, 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0 |
- Source:
- AttributeDictionary.cs
- Source:
- AttributeDictionary.cs
- Source:
- AttributeDictionary.cs
Adds an element with the provided key and value to the IDictionary<TKey,TValue>.
public:
virtual void Add(System::String ^ key, System::String ^ value);
C#
public void Add (string key, string value);
C#
public void Add (string key, string? value);
abstract member Add : string * string -> unit
override this.Add : string * string -> unit
Public Sub Add (key As String, value As String)
Parameters
- key
- String
- value
- String
Implements
Applies to
ASP.NET Core 9.0 والإصدارات الأخرى
منتج | الإصدارات |
---|---|
ASP.NET Core | 1.0, 1.1, 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0 |