blob: 3b0b73bb58032417a6860f20766ac8a0ec708468 (
plain)
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
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Extensibility.Data
{
using System;
/// <summary>
/// Bind path representation.
/// </summary>
public class BindPath
{
/// <summary>
/// Creates an unnamed bind path.
/// </summary>
/// <param name="path">Path for the bind path.</param>
public BindPath(string path) : this(String.Empty, path, BindStage.Normal)
{
}
/// <summary>
/// Creates a named bind path.
/// </summary>
/// <param name="name">Name of the bind path.</param>
/// <param name="path">Path for the bind path.</param>
/// <param name="stage">Stage for the bind path.</param>
public BindPath(string name, string path, BindStage stage = BindStage.Normal)
{
this.Name = name;
this.Path = path;
this.Stage = stage;
}
/// <summary>
/// Name of the bind path or String.Empty if the path is unnamed.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Path for the bind path.
/// </summary>
public string Path { get; set; }
/// <summary>
/// Stage for the bind path.
/// </summary>
public BindStage Stage { get; set; }
/// <summary>
/// Parses a normal bind path from its string representation
/// </summary>
/// <param name="bindPath">String representation of bind path that looks like: [name=]path</param>
/// <returns>Parsed normal bind path.</returns>
public static BindPath Parse(string bindPath)
{
string[] namedPath = bindPath.Split(new char[] { '=' }, 2);
return (1 == namedPath.Length) ? new BindPath(namedPath[0]) : new BindPath(namedPath[0], namedPath[1]);
}
}
}
|