Amazon.S3.Model.MetadataCollection.Add C# (CSharp) Метод

Add() публичный Метод

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
Результат void
        public void Add(string name, string value)
        {
            this[name] = value;
        }
MetadataCollection