[Multimedia] Modified a constructor of the Display class not to check the raw video...
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.MediaPlayer / Player / DownloadProgress.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 namespace Tizen.Multimedia
18 {
19
20     /// <summary>
21     /// Represents data for a downloading status.
22     /// </summary>
23     /// <since_tizen> 3 </since_tizen>
24     public struct DownloadProgress
25     {
26         /// <summary>
27         /// Initializes a new instance of the DownloadProgress struct.
28         /// </summary>
29         /// <param name="start">The position that downloading started in percentage.</param>
30         /// <param name="current">The position indicating the current downloading progress in percentage.</param>
31         /// <since_tizen> 3 </since_tizen>
32         public DownloadProgress(int start, int current)
33         {
34             Start = start;
35             Current = current;
36             Log.Debug(PlayerLog.Tag, "start : " + start + ", current : " + current);
37         }
38
39         /// <summary>
40         /// Gets or sets the start position.
41         /// </summary>
42         /// <value>The position that downloading started in percentage.</value>
43         /// <since_tizen> 3 </since_tizen>
44         public int Start
45         {
46             get;
47             set;
48         }
49
50         /// <summary>
51         /// Gets or sets the current position.
52         /// </summary>
53         /// <value>The position indicating the current downloading progress in percentage.</value>
54         /// <since_tizen> 3 </since_tizen>
55         public int Current
56         {
57             get;
58             set;
59         }
60
61         /// <summary>
62         /// Returns a string that represents the current object.
63         /// </summary>
64         /// <returns>A string that represents the current object.</returns>
65         /// <since_tizen> 3 </since_tizen>
66         public override string ToString()
67         {
68             return $"Start={ Start.ToString() }, Current={ Current.ToString() }";
69         }
70     }
71 }