Ejemplo n.º 1
0
        public Task<RecivedId> Add(string body, ByteFile file)
        {
            if (string.IsNullOrWhiteSpace(body))
                throw new ArgumentException("Argument is null or whitespace", nameof(body));
            if (file == null) throw new ArgumentNullException(nameof(file));

            var parameters = GetApiParameterSet();
            var postParameters = new SortedSet<PostParameter>
            {
                new StringPostParameter("accountkey", Client.AccountKey),
                new StringPostParameter("body", body),
                new BytePostParameter("embed", file)
            };

            return Client.CallApiMethodWithAuth<RecivedId>(
                new ApiMethod(ApiV1Constants.EntriesAdd, HttpMethod.Post, parameters, postParameters)
                );
        }
Ejemplo n.º 2
0
        public Task<RecivedId> Add(string body, ByteFile file, int linkId, int precedentCommentId = -1)
        {
            if (file == null) throw new ArgumentNullException(nameof(file));
            if (String.IsNullOrWhiteSpace(body))
                throw new ArgumentException("Argument is null or whitespace", nameof(body));

            var parameters = GetApiParameterSet();
            var methodParameters = new SortedSet<StringMethodParameter>
            {
                new StringMethodParameter("param1", linkId)
            };
            if (precedentCommentId != -1)
                methodParameters.Add(new StringMethodParameter("param2", precedentCommentId));

            var postParameters = new SortedSet<PostParameter>
            {
                new StringPostParameter("body", body),
                new BytePostParameter("embed", file)
            };
            
            return Client.CallApiMethodWithAuth<RecivedId>(
                new ApiMethod(ApiV1Constants.CommentsAdd, HttpMethod.Post, parameters, methodParameters, postParameters)
                );
        }
Ejemplo n.º 3
0
        public Task<BooleanModel> Send(string username, string body, ByteFile file)
        {
            if (file == null) throw new ArgumentNullException(nameof(file));
            if (string.IsNullOrWhiteSpace(username))
                throw new ArgumentException("Argument is null or whitespace", nameof(username));
            if (string.IsNullOrWhiteSpace(body))
                throw new ArgumentException("Argument is null or whitespace", nameof(body));

            var parameters = GetApiParameterSet();
            var methodParameters = new SortedSet<StringMethodParameter>
            {
                new StringMethodParameter("param1", username)
            };
            var postParameters = new SortedSet<PostParameter>
            {
                new StringPostParameter("body", body),
                new BytePostParameter("embed", file)
            };
            
            return Client.CallApiMethodWithAuth<BooleanModel>(
                new ApiMethod(ApiV1Constants.PmSendMessage, HttpMethod.Post, parameters, methodParameters,
                    postParameters)
                );
        }
Ejemplo n.º 4
0
 public Task<RecivedId> Add(string body, ByteFile file)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 5
0
 public BytePostParameter(string name, ByteFile file) : base(name)
 {
     Value    = file.Data;
     FileName = file.FileName;
     MimeType = file.MimeType;
 }
 public Task<BooleanModel> Send(string username, string body, ByteFile file)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 7
0
 public Task<RecivedId> Add(string body, ByteFile file, int linkId, int precedentCommentId = -1)
 {
     throw new NotImplementedException();
 }