Amazon.S3.Util.S3PostUploadSignedPolicy.ToJson C# (CSharp) Method

ToJson() public method

JSON representation of this object
public ToJson ( ) : string
return string
        public string ToJson()
        {
            var json = new JsonData();

            json[KEY_POLICY] = this.Policy;
            json[KEY_SIGNATURE] = this.Signature;
            json[KEY_ACCESSKEY] = this.AccessKeyId;

            return JsonMapper.ToJson(json);
        }