/* * 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.Applications { /// /// Data of the AppControl. /// public static class AppControlData { /// /// Subject /// public const string Subject = "http://tizen.org/appcontrol/data/subject"; /// /// Recipients /// public const string To = "http://tizen.org/appcontrol/data/to"; /// /// E-mail addresses that should be carbon copied /// public const string Cc = "http://tizen.org/appcontrol/data/cc"; /// /// E-mail addresses that should be blind carbon copied /// public const string Bcc = "http://tizen.org/appcontrol/data/bcc"; /// /// Text /// public const string Text = "http://tizen.org/appcontrol/data/text"; /// /// Title /// public const string Title = "http://tizen.org/appcontrol/data/title"; /// /// Selected items /// public const string Selected = "http://tizen.org/appcontrol/data/selected"; /// /// Paths of items /// public const string Path = "http://tizen.org/appcontrol/data/path"; /// /// Selection mode. ("single" or "multiple") /// public const string SectionMode = "http://tizen.org/appcontrol/data/selection_mode"; /// /// All-day mode of event ("true" or "false") /// public const string AllDay = "http://tizen.org/appcontrol/data/calendar/all_day"; /// /// Start time of event (format: YYYY-MM-DD HH:MM:SS) /// public const string StartTime = "http://tizen.org/appcontrol/data/calendar/start_time"; /// /// End time of event (format: YYYY-MM-DD HH:MM:SS) /// public const string Endtime = "http://tizen.org/appcontrol/data/calendar/end_time"; /// /// E-mail addressed /// public const string Email = "http://tizen.org/appcontrol/data/email"; /// /// Phone numbers /// public const string Phone = "http://tizen.org/appcontrol/data/phone"; /// /// URLs /// public const string Url = "http://tizen.org/appcontrol/data/url"; /// /// IDs /// public const string Ids = "http://tizen.org/appcontrol/data/id"; /// /// Type /// public const string Type = "http://tizen.org/appcontrol/data/type"; /// /// Total count /// public const string TotalCount = "http://tizen.org/appcontrol/data/total_count"; /// /// Total size (unit : bytes) /// public const string TotalSize = "http://tizen.org/appcontrol/data/total_size"; /// /// Name /// public const string Name = "http://tizen.org/appcontrol/data/name"; /// /// Location /// public const string Location = "http://tizen.org/appcontrol/data/location"; /// /// Select the type of input method /// public const string InputType = "http://tizen.org/appcontrol/data/input_type"; /// /// Send the pre inputted text such as "http://" in web /// public const string InputDefaultText = "http://tizen.org/appcontrol/data/input_default_text"; /// /// Send guide text to show to user such as "Input user name" /// public const string InputGuideText = "http://tizen.org/appcontrol/data/input_guide_text"; /// /// Send text to receive answer result from smart reply /// public const string InputPredictionHint = "http://tizen.org/appcontrol/data/input_prediction_hint"; } }