Released windows auth, connect to ES.Services.
This commit is contained in:
parent
2569e55609
commit
d29c347ff4
294 changed files with 329583 additions and 2315 deletions
34
WebsitePanel/Sources/WebsitePanel.WebDav.Core/Property.cs
Normal file
34
WebsitePanel/Sources/WebsitePanel.WebDav.Core/Property.cs
Normal file
|
@ -0,0 +1,34 @@
|
|||
namespace WebsitePanel.WebDav.Core
|
||||
{
|
||||
namespace Client
|
||||
{
|
||||
public class Property
|
||||
{
|
||||
public readonly PropertyName Name;
|
||||
private string _value = "";
|
||||
|
||||
public Property(PropertyName name, string value)
|
||||
{
|
||||
Name = name;
|
||||
StringValue = value;
|
||||
}
|
||||
|
||||
public Property(string name, string nameSpace, string value)
|
||||
{
|
||||
Name = new PropertyName(name, nameSpace);
|
||||
StringValue = value;
|
||||
}
|
||||
|
||||
public string StringValue
|
||||
{
|
||||
get { return _value; }
|
||||
set { _value = value; }
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return StringValue;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue