-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathUserToPersonConverter.cs
More file actions
34 lines (30 loc) · 1005 Bytes
/
UserToPersonConverter.cs
File metadata and controls
34 lines (30 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using Microsoft.Graph;
using Microsoft.Toolkit.Graph.Extensions;
using Microsoft.UI.Xaml.Data;
namespace Microsoft.Toolkit.Graph.Converters
{
/// <summary>
/// Converts a <see cref="User"/> to a <see cref="Person"/>.
/// </summary>
public class UserToPersonConverter : IValueConverter
{
/// <inheritdoc/>
public object Convert(object value, Type targetType, object parameter, string language)
{
if (value is User user)
{
return user.ToPerson();
}
return null;
}
/// <inheritdoc/>
public object ConvertBack(object value, Type targetType, object parameter, string language)
{
throw new NotImplementedException();
}
}
}