-
Notifications
You must be signed in to change notification settings - Fork 9
/
PexelsDotNetSDK.xml
93 lines (93 loc) · 6.01 KB
/
PexelsDotNetSDK.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0"?>
<doc>
<assembly>
<name>PexelsDotNetSDK</name>
</assembly>
<members>
<member name="T:PexelsDotNetSDK.Api.PexelsClient">
<summary>
It is free to sign up and use the Pexels API.
- Sign Up here: https://www.pexels.com
- visit https://www.pexels.com/api/new/ to obtain your API key
</summary>
</member>
<member name="M:PexelsDotNetSDK.Api.PexelsClient.SearchPhotosAsync(System.String,System.String,System.Int32,System.Int32)">
<summary>
This endpoint enables you to search Pexels for any topic that you would like. For example your query could be something broad like 'Nature',
'Tigers', 'People'. Or it could be something specific like 'Group of people working'.
</summary>
<param name="query">The search query. Ocean, Tigers, Pears, etc.</param>
<param name="locale">The locale of the search you are performing. The current supported locales are: 'en-US' 'pt-BR' 'es-ES' 'ca-ES' 'de-DE' 'it-IT' 'fr-FR' 'sv-SE' 'id-ID' 'pl-PL' 'ja-JP' 'zh-TW' 'zh-CN' 'ko-KR' 'th-TH' 'nl-NL' 'hu-HU' 'vi-VN' 'cs-CZ' 'da-DK' 'fi-FI' 'uk-UA' 'el-GR' 'ro-RO' 'nb-NO' 'sk-SK' 'tr-TR' 'ru-RU'.</param>
<param name="page">The number of the page you are requesting. Default: 1</param>
<param name="pageSize">The number of results you are requesting per page. Default: 15 Max: 80</param>
<returns></returns>
</member>
<member name="M:PexelsDotNetSDK.Api.PexelsClient.CollectionsAsync(System.Int32,System.Int32)">
<summary>
This endpoint allows you to get all the collections you've created on Pexels.
</summary>
<param name="page">The number of the page you are requesting. Default: 1</param>
<param name="pageSize">The number of results you are requesting per page. Default: 15 Max: 80</param>
<returns></returns>
</member>
<member name="M:PexelsDotNetSDK.Api.PexelsClient.GetCollectionAsync(System.String,System.Int32,System.Int32,System.String)">
<summary>
This endpoint gets the media of a specific collection.
</summary>
<param name="id">The Collection Id</param>
<param name="page">The number of the page you are requesting. Default: 1</param>
<param name="pageSize">The number of results you are requesting per page. Default: 15 Max: 80</param>
<param name="type">Filter results to a specific media type (`videos` or `photos`). Leave blank for all results.</param>
<returns></returns>
</member>
<member name="M:PexelsDotNetSDK.Api.PexelsClient.CuratedPhotosAsync(System.Int32,System.Int32)">
<summary>
This endpoint enables you to receive real-time photos curated by the Pexels team.
We add at least one new photo per hour to our curated list so that you always get a changing selection of trending photos.
</summary>
<param name="page">The number of the page you are requesting. Default: 1</param>
<param name="pageSize">The number of results you are requesting per page. Default: 15 Max: 80</param>
<returns></returns>
</member>
<member name="M:PexelsDotNetSDK.Api.PexelsClient.GetPhotoAsync(System.Int32)">
<summary>
Retrieve a specific Photo from its id.
</summary>
<param name="id">The id of the photo you are requesting.</param>
<returns></returns>
</member>
<member name="M:PexelsDotNetSDK.Api.PexelsClient.SearchVideosAsync(System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
This endpoint enables you to search Pexels for any topic that you would like. For example your query could be something broad like 'Nature',
'Tigers', 'People'. Or it could be something specific like 'Group of people working'.
</summary>
<param name="query">The search query. Ocean, Tigers, Pears, etc.</param>
<param name="page">The number of the page you are requesting. Default: 1</param>
<param name="pageSize">The number of results you are requesting per page. Default: 15 Max: 80</param>
<param name="minWidth">The minimum width in pixels of the returned videos.</param>
<param name="minHeight">The minimum height in pixels of the returned videos.</param>
<param name="minDurationSecs">The minimum duration in seconds of the returned videos.</param>
<param name="maxDurationSecs">The maximum duration in seconds of the returned videos.</param>
<returns></returns>
</member>
<member name="M:PexelsDotNetSDK.Api.PexelsClient.PopularVideosAsync(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
This endpoint enables you to receive the current popular Pexels videos.
</summary>
<param name="page">The number of the page you are requesting. Default: 1</param>
<param name="pageSize">The number of results you are requesting per page. Default: 15 Max: 80</param>
<param name="minWidth">The minimum width in pixels of the returned videos.</param>
<param name="minHeight">The minimum height in pixels of the returned videos.</param>
<param name="minDurationSecs">The minimum duration in seconds of the returned videos.</param>
<param name="maxDurationSecs">The maximum duration in seconds of the returned videos.</param>
<returns></returns>
</member>
<member name="M:PexelsDotNetSDK.Api.PexelsClient.GetVideoAsync(System.Int32)">
<summary>
Retrieve a specific Video from its id.
</summary>
<param name="id">The id of the video you are requesting.</param>
<returns></returns>
</member>
</members>
</doc>