[ACR-564] deprecate unused API
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / DisplayedMonthChangedEventArgs.cs
old mode 100755 (executable)
new mode 100644 (file)
index 8407f6d..cd8893d
@@ -20,30 +20,38 @@ namespace ElmSharp
 {
     /// <summary>
     /// It inherits System.EventArgs.
-    /// The DisplayedMonthChangedEvent in Calendar contain
+    /// The DisplayedMonthChangedEvent in a calendar contains the
     /// DisplayedMonthChangedEventArgs as a parameter.
     /// </summary>
+    /// <since_tizen> preview </since_tizen>
+    [Obsolete("This has been deprecated in API12")]
     public class DisplayedMonthChangedEventArgs : EventArgs
     {
         /// <summary>
         /// Gets the OldMonth property of the given DisplayedMonthChangedEventArgs.
         /// </summary>
+        /// <since_tizen> preview </since_tizen>
+        [Obsolete("This has been deprecated in API12")]
         public int OldMonth { get; private set; }
 
         /// <summary>
         /// Gets the NewMonth property of the given DisplayedMonthChangedEventArgs.
         /// </summary>
+        /// <since_tizen> preview </since_tizen>
+        [Obsolete("This has been deprecated in API12")]
         public int NewMonth { get; private set; }
 
         /// <summary>
         /// Creates and initializes a new instance of the DisplayedMonthChangedEventArgs class.
         /// </summary>
         /// <param name="oldMonth">
-        /// old month of date when DisplayedMonthChangedEvent triggered.
+        /// Old month of the date when the DisplayedMonthChangedEvent triggered.
         /// </param>
         /// <param name="newMonth">
-        /// new month of date when DisplayedMonthChangedEvent triggered.
+        /// New month of the date when the DisplayedMonthChangedEvent triggered.
         /// </param>
+        /// <since_tizen> preview </since_tizen>
+        [Obsolete("This has been deprecated in API12")]
         public DisplayedMonthChangedEventArgs(int oldMonth, int newMonth)
         {
             this.OldMonth = oldMonth;