Creates a new list for the authenticated user. Accounts are limited to 20 lists.
| C# | Visual Basic |
public static TwitterResponse<TwitterList> New( OAuthTokens tokens, string username, string name, bool isPublic, string description )
Public Shared Function New ( _ tokens As OAuthTokens, _ username As String, _ name As String, _ isPublic As Boolean, _ description As String _ ) As TwitterResponse(Of TwitterList)
- tokens (OAuthTokens)
- The oauth tokens.
- username (String)
- The username.
- name (String)
- The list name.
- isPublic (Boolean)
- if set to true creates a public list.
- description (String)
- The description.
A TwitterList instance.