Lists all the pastes for the current user.
Namespace: PastebinAssembly: Pastebin (in Pastebin.dll) Version: 1.0
Syntaxpublic ReadOnlyCollection<Paste> GetPastes(
int limit = 50
)
Public Function GetPastes (
Optional limit As Integer = 50
) As ReadOnlyCollection(Of Paste)
public:
ReadOnlyCollection<Paste^>^ GetPastes(
int limit = 50
)
member GetPastes :
?limit : int
(* Defaults:
let _limit = defaultArg limit 50
*)
-> ReadOnlyCollection<Paste>
Parameters
- limit (Optional)
- Type: SystemInt32
Optional paste limit. Minimum value = 1. Maximum value = 1000.
Return Value
Type:
ReadOnlyCollectionPasteA read-only collection containing the user's pastes.
Exceptions
See Also