C# 클래스 Amazon.S3.Model.MetadataCollection

This class contains the meta data for an S3 object.
파일 보기 프로젝트 열기: aws/aws-sdk-net 1 사용 예제들

공개 메소드들

메소드 설명
Add ( string name, string value ) : void

Adds the metadata to the collection, if the name already exists it will be overwritten.

this ( string name ) : string

Gets and sets meta data for the object. Meta data names must start with "x-amz-meta-". If the name passeed in as the indexer doesn't start with "x-amz-meta-" then it will be prepended.

메소드 상세

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

this() 공개 메소드

Gets and sets meta data for the object. Meta data names must start with "x-amz-meta-". If the name passeed in as the indexer doesn't start with "x-amz-meta-" then it will be prepended.
public this ( string name ) : string
name string The name of the meta data.
리턴 string