-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContainer.cs
47 lines (40 loc) · 1.28 KB
/
Container.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
using System;
using System.IO;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Json;
namespace Vault
{
[DataContract]
internal class Container
{
[DataMember]
internal string url;
[DataMember]
internal string username;
[DataMember]
internal string password;
[DataMember]
internal string certificateSubject;
[DataMember]
internal DateTime created;
internal Container(UriBuilder url, string username, string password, string certificateSubject) {
this.url = url.ToString();
this.username = username;
this.password = password;
this.certificateSubject = certificateSubject;
this.created = DateTime.Now;
}
internal string ToJSON()
{
MemoryStream stream = new MemoryStream();
var serializer = new DataContractJsonSerializer(typeof(Container), new DataContractJsonSerializerSettings()
{
UseSimpleDictionaryFormat = true
});
serializer.WriteObject(stream, this);
stream.Position = 0;
StreamReader streamReader = new StreamReader(stream);
return streamReader.ReadToEnd();
}
}
}