371d7506a9f30cdf9134a7fbce65e11a45c72e99
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / XamlBinding / IExtendedTypeConverter.cs
1 /*
2  * Copyright(c) 2021 Samsung Electronics Co., Ltd.
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 using System;
18 using System.Globalization;
19
20 namespace Tizen.NUI.Binding
21 {
22     internal interface IExtendedTypeConverter
23     {
24         [Obsolete("IExtendedTypeConverter.ConvertFrom is obsolete as of version 2.2.0. Please use ConvertFromInvariantString (string, IServiceProvider) instead.")]
25         object ConvertFrom(CultureInfo culture, object value, IServiceProvider serviceProvider);
26
27         object ConvertFromInvariantString(string value, IServiceProvider serviceProvider);
28     }
29 }