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