/* * 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. */ namespace Tizen.Network.IoTConnectivity { /// /// This class represents event arguments of the PlatformInformationFound event. /// /// 3 public class PlatformInformationFoundEventArgs { internal PlatformInformationFoundEventArgs() { } /// /// Indicates the request ID. /// /// 3 /// The request ID. public int RequestId { get; internal set; } /// /// Indicates to continuously receive the event for finding the platform information. /// /// 3 /// Continuously receive the event for finding the platform information. public bool EventContinue { get; set; } /// /// Indicates the platform identifier. /// /// 3 /// The platform identifier. public string PlatformId { get; internal set; } /// /// Indicates the name of the manufacturer. /// /// 3 /// The name of the manufacturer. public string ManufacturerName { get; internal set; } /// /// Indicates the URL of the manufacturer. /// /// 3 /// The URL of the manufacturer. public string ManufacturerURL { get; internal set; } /// /// Indicates the model number as designated by the manufacturer. /// /// 3 /// The model number as designated by the manufacturer. public string ModelNumber { get; internal set; } /// /// Indicates the manufacturing date of the device. /// /// 3 /// The manufacturing date of the device. public string DateOfManufacture { get; internal set; } /// /// Indicates the version of the platfrom defined by the manufacturer. /// /// 3 /// The version of platfrom defined by manufacturer. public string PlatformVersion { get; internal set; } /// /// Indicates the version of the platfrom resident OS. /// /// 3 /// The version of the platfrom resident OS. public string OsVersion { get; internal set; } /// /// Indicates the version of the platform Hardware. /// /// 3 /// The version of the platform Hardware. public string HardwareVersion { get; internal set; } /// /// Indicates the version of the device firmware. /// /// 3 /// The version of the device firmware. public string FirmwareVersion { get; internal set; } /// /// Indicates the URL that points to support information from the manufacturer. /// /// 3 /// The URL that points to support information from the manufacturer. public string SupportUrl { get; internal set; } /// /// Indicates the reference time of the device. /// /// 3 /// The reference time of the device. public string SystemTime { get; internal set; } } }