-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathUtils.cs
85 lines (74 loc) · 2.55 KB
/
Utils.cs
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
namespace SqlDefinitionStorageExample
{
using System;
using System.IO;
using System.Linq.Expressions;
using System.Threading.Tasks;
using System.Xml.XPath;
class SharedDataSourceDescriptionHelper
{
static readonly string descriptionPropertyName = PropertyUtils.ExtractPropertyName(() => new Telerik.WebReportDesigner.Services.Models.SharedDataSourceModel().Description);
public static string Read(byte[] dsDefinitionBytes)
{
using (var ms = new MemoryStream(dsDefinitionBytes))
{
return SharedDataSourceDescriptionHelper.ReadDescription(ms);
}
}
public static string ReadDescription(string dsDefinition)
{
using (var reader = new StringReader(dsDefinition))
{
return SharedDataSourceDescriptionHelper.ReadDescription(new XPathDocument(reader));
}
}
public static string ReadDescription(Stream stream)
{
return SharedDataSourceDescriptionHelper.ReadDescription(new XPathDocument(stream));
}
static string ReadDescription(XPathDocument document)
{
var navigator = document.CreateNavigator();
navigator.MoveToFirstChild();
return navigator.GetAttribute(descriptionPropertyName, string.Empty);
}
}
public static class PropertyUtils
{
public static string ExtractPropertyName(Expression<Func<object>> exp)
{
var propertyName = String.Empty;
if (exp is System.Linq.Expressions.LambdaExpression lambda)
{
var memberExp = lambda.Body as MemberExpression;
if (null == memberExp)
{
if (lambda.Body is UnaryExpression unary)
{
memberExp = unary.Operand as MemberExpression;
}
}
if (null != memberExp)
{
propertyName = memberExp.Member.Name;
}
}
return propertyName;
}
}
public static class TaskExtensions
{
public static T ToResult<T>(this Task<T> task)
{
return task.GetAwaiter().GetResult();
}
public static void ToResult(this Task task)
{
task.GetAwaiter().GetResult();
}
public static Task<TResult> ToTask<TResult>(this TResult t) where TResult : class
{
return Task.FromResult(t);
}
}
}