VkNet.Model.RequestParams.BoardEditCommentParams.ToVkParameters C# (CSharp) Method

ToVkParameters() public static method

Привести к типу VkParameters.
public static ToVkParameters ( BoardEditCommentParams p ) : VkParameters
p BoardEditCommentParams Параметры.
return VkParameters
        public static VkParameters ToVkParameters(BoardEditCommentParams p)
        {
            var parameters = new VkParameters
            {
                { "group_id", p.GroupId },
                { "topic_id", p.TopicId },
                { "comment_id", p.CommentId },
                { "message", p.Message },
                { "attachments", p.Attachments },
                { "captcha_sid", p.CaptchaSid},
                { "captcha_key", p.CaptchaKey}
            };

            return parameters;
        }