@@ -107,94 +107,94 @@ public interface IObservableIssueCommentsClient
107
107
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
108
108
/// <param name="owner">The owner of the repository</param>
109
109
/// <param name="name">The name of the repository</param>
110
- /// <param name="number ">The issue number</param>
111
- IObservable < IssueComment > GetAllForIssue ( string owner , string name , int number ) ;
110
+ /// <param name="issueNumber ">The issue number</param>
111
+ IObservable < IssueComment > GetAllForIssue ( string owner , string name , int issueNumber ) ;
112
112
113
113
/// <summary>
114
114
/// Gets Issue Comments for a specified Issue.
115
115
/// </summary>
116
116
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
117
117
/// <param name="repositoryId">The Id of the repository</param>
118
- /// <param name="number ">The issue number</param>
119
- IObservable < IssueComment > GetAllForIssue ( long repositoryId , int number ) ;
118
+ /// <param name="issueNumber ">The issue number</param>
119
+ IObservable < IssueComment > GetAllForIssue ( long repositoryId , int issueNumber ) ;
120
120
121
121
/// <summary>
122
122
/// Gets Issue Comments for a specified Issue.
123
123
/// </summary>
124
124
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
125
125
/// <param name="owner">The owner of the repository</param>
126
126
/// <param name="name">The name of the repository</param>
127
- /// <param name="number ">The issue number</param>
127
+ /// <param name="issueNumber ">The issue number</param>
128
128
/// <param name="options">Options for changing the API response</param>
129
- IObservable < IssueComment > GetAllForIssue ( string owner , string name , int number , ApiOptions options ) ;
129
+ IObservable < IssueComment > GetAllForIssue ( string owner , string name , int issueNumber , ApiOptions options ) ;
130
130
131
131
/// <summary>
132
132
/// Gets Issue Comments for a specified Issue.
133
133
/// </summary>
134
134
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
135
135
/// <param name="repositoryId">The Id of the repository</param>
136
- /// <param name="number ">The issue number</param>
136
+ /// <param name="issueNumber ">The issue number</param>
137
137
/// <param name="options">Options for changing the API response</param>
138
- IObservable < IssueComment > GetAllForIssue ( long repositoryId , int number , ApiOptions options ) ;
138
+ IObservable < IssueComment > GetAllForIssue ( long repositoryId , int issueNumber , ApiOptions options ) ;
139
139
140
140
/// <summary>
141
141
/// Gets Issue Comments for a specified Issue.
142
142
/// </summary>
143
143
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
144
144
/// <param name="owner">The owner of the repository</param>
145
145
/// <param name="name">The name of the repository</param>
146
- /// <param name="number ">The issue number</param>
146
+ /// <param name="issueNumber ">The issue number</param>
147
147
/// <param name="request">The sorting <see cref="IssueCommentRequest">parameters</see></param>
148
- IObservable < IssueComment > GetAllForIssue ( string owner , string name , int number , IssueCommentRequest request ) ;
148
+ IObservable < IssueComment > GetAllForIssue ( string owner , string name , int issueNumber , IssueCommentRequest request ) ;
149
149
150
150
/// <summary>
151
151
/// Gets Issue Comments for a specified Issue.
152
152
/// </summary>
153
153
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
154
154
/// <param name="repositoryId">The Id of the repository</param>
155
- /// <param name="number ">The issue number</param>
155
+ /// <param name="issueNumber ">The issue number</param>
156
156
/// <param name="request">The sorting <see cref="IssueCommentRequest">parameters</see></param>
157
- IObservable < IssueComment > GetAllForIssue ( long repositoryId , int number , IssueCommentRequest request ) ;
157
+ IObservable < IssueComment > GetAllForIssue ( long repositoryId , int issueNumber , IssueCommentRequest request ) ;
158
158
159
159
/// <summary>
160
160
/// Gets Issue Comments for a specified Issue.
161
161
/// </summary>
162
162
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
163
163
/// <param name="owner">The owner of the repository</param>
164
164
/// <param name="name">The name of the repository</param>
165
- /// <param name="number ">The issue number</param>
165
+ /// <param name="issueNumber ">The issue number</param>
166
166
/// <param name="request">The sorting <see cref="IssueCommentRequest">parameters</see></param>
167
167
/// <param name="options">Options for changing the API response</param>
168
- IObservable < IssueComment > GetAllForIssue ( string owner , string name , int number , IssueCommentRequest request , ApiOptions options ) ;
168
+ IObservable < IssueComment > GetAllForIssue ( string owner , string name , int issueNumber , IssueCommentRequest request , ApiOptions options ) ;
169
169
170
170
/// <summary>
171
171
/// Gets Issue Comments for a specified Issue.
172
172
/// </summary>
173
173
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
174
174
/// <param name="repositoryId">The Id of the repository</param>
175
- /// <param name="number ">The issue number</param>
175
+ /// <param name="issueNumber ">The issue number</param>
176
176
/// <param name="request">The sorting <see cref="IssueCommentRequest">parameters</see></param>
177
177
/// <param name="options">Options for changing the API response</param>
178
- IObservable < IssueComment > GetAllForIssue ( long repositoryId , int number , IssueCommentRequest request , ApiOptions options ) ;
178
+ IObservable < IssueComment > GetAllForIssue ( long repositoryId , int issueNumber , IssueCommentRequest request , ApiOptions options ) ;
179
179
180
180
/// <summary>
181
181
/// Creates a new Issue Comment for a specified Issue.
182
182
/// </summary>
183
183
/// <remarks>http://developer.github.com/v3/issues/comments/#create-a-comment</remarks>
184
184
/// <param name="owner">The owner of the repository</param>
185
185
/// <param name="name">The name of the repository</param>
186
- /// <param name="number ">The number of the issue</param>
186
+ /// <param name="issueNumber ">The issue number </param>
187
187
/// <param name="newComment">The text of the new comment</param>
188
- IObservable < IssueComment > Create ( string owner , string name , int number , string newComment ) ;
188
+ IObservable < IssueComment > Create ( string owner , string name , int issueNumber , string newComment ) ;
189
189
190
190
/// <summary>
191
191
/// Creates a new Issue Comment for a specified Issue.
192
192
/// </summary>
193
193
/// <remarks>http://developer.github.com/v3/issues/comments/#create-a-comment</remarks>
194
194
/// <param name="repositoryId">The Id of the repository</param>
195
- /// <param name="number ">The number of the issue</param>
195
+ /// <param name="issueNumber ">The issue number </param>
196
196
/// <param name="newComment">The text of the new comment</param>
197
- IObservable < IssueComment > Create ( long repositoryId , int number , string newComment ) ;
197
+ IObservable < IssueComment > Create ( long repositoryId , int issueNumber , string newComment ) ;
198
198
199
199
/// <summary>
200
200
/// Updates a specified Issue Comment.
0 commit comments