Toggle navigation
Hot Examples
ES
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
C#
PHP
C#
Java
Go
C++
Python
JS
TS
Buscar
Inicio
Amazon
S3
Model
MetadataCollection
Add
Amazon.S3.Model.MetadataCollection.Add C# (CSharp) Method
MetadataCollection Class Documentation
Mostrar archivo
Open project: aws/aws-sdk-net
Add()
public
method
Adds the metadata to the collection, if the name already exists it will be overwritten.
public
Add
(
string
name
,
string
value
) :
void
name
string
The name of the metadata element
value
string
The value for the metadata
return
void
public void Add(string name, string value) { this[name] = value; }
MetadataCollection
Add
this