Setting since_tizen 3/4 on Tizen.NET API
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.Remoting / MediaController / MetadataUpdatedEventArgs.cs
index 51a718c..59c3682 100755 (executable)
@@ -1,49 +1,44 @@
 /*
-* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
-*
-* Licensed under the Apache License, Version 2.0 (the License);
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an AS IS BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 
 using System;
 
-namespace Tizen.Multimedia.MediaController
+namespace Tizen.Multimedia.Remoting
 {
-
     /// <summary>
-    /// MetadataUpdated event arguments
+    /// Provides data for the <see cref="MediaController.MetadataUpdated"/> event.
     /// </summary>
-    /// <remarks>
-    /// MetadataUpdated event arguments
-    /// </remarks>
+    /// <since_tizen> 4 </since_tizen>
     public class MetadataUpdatedEventArgs : EventArgs
     {
-        internal MetadataUpdatedEventArgs(string name, IntPtr handle)
-        {
-            ServerName = name;
-            Metadata = new MediaControllerMetadata(handle);
-        }
-
         /// <summary>
-        /// Get the Server Name.
+        /// Initializes a new instance of the <see cref="MetadataUpdatedEventArgs"/> class.
         /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        public string ServerName { get; }
+        /// <param name="metadata">The updated <see cref="MediaControlMetadata"/>.</param>
+        /// <since_tizen> 4 </since_tizen>
+        public MetadataUpdatedEventArgs(MediaControlMetadata metadata)
+        {
+            Metadata = metadata;
+        }
 
         /// <summary>
-        /// Get the Metadata information.
+        /// Gets the metadata.
         /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        public MediaControllerMetadata Metadata { get; }
+        /// <value>The updated <see cref="MediaControlMetadata"/>.</value>
+        /// <since_tizen> 4 </since_tizen>
+        public MediaControlMetadata Metadata { get; }
     }
-}
-
+}
\ No newline at end of file