@@ -154,6 +154,20 @@ public static TwitterResponse<TwitterList> New(OAuthTokens tokens, string userna
154
154
return Core . CommandPerformer < TwitterList > . PerformAction ( command ) ;
155
155
}
156
156
157
+ /// <summary>
158
+ /// Creates a new list for the authenticated user. Accounts are limited to 20 lists.
159
+ /// </summary>
160
+ /// <param name="tokens">The oauth tokens.</param>
161
+ /// <param name="username">The username.</param>
162
+ /// <param name="name">The list name.</param>
163
+ /// <param name="isPublic">if set to <c>true</c> creates a public list.</param>
164
+ /// <param name="description">The description.</param>
165
+ /// <returns>A <see cref="TwitterList"/> instance.</returns>
166
+ public static TwitterResponse < TwitterList > New ( OAuthTokens tokens , string username , string name , bool isPublic , string description )
167
+ {
168
+ return New ( tokens , username , name , isPublic , description , null ) ;
169
+ }
170
+
157
171
/// <summary>
158
172
/// Updates the specified list.
159
173
/// </summary>
@@ -219,6 +233,20 @@ public static TwitterResponse<TwitterList> GetList(OAuthTokens tokens, string us
219
233
return Core . CommandPerformer < TwitterList > . PerformAction ( command ) ;
220
234
}
221
235
236
+ /// <summary>
237
+ /// Show the specified list. Private lists will only be shown if the authenticated user owns the specified list.
238
+ /// </summary>
239
+ /// <param name="tokens">The tokens.</param>
240
+ /// <param name="username">The username.</param>
241
+ /// <param name="listIdOrSlug">The list id or slug.</param>
242
+ /// <returns>
243
+ /// A <see cref="TwitterListCollection"/> instance.
244
+ /// </returns>
245
+ public static TwitterResponse < TwitterList > GetList ( OAuthTokens tokens , string username , string listIdOrSlug )
246
+ {
247
+ return GetList ( tokens , username , listIdOrSlug , null ) ;
248
+ }
249
+
222
250
/// <summary>
223
251
/// Deletes the specified list. Must be owned by the authenticated user.
224
252
/// </summary>
0 commit comments