public PersistentDocumentImplementation(DocumentSpy spy)
 {
     this.Document = new Dictionary<string, Dictionary<string, string>>();
     this.Spy = spy;
 }
コード例 #2
0
 public void Initialize()
 {
     this.Spy = new DocumentSpy();
     this.Document = new PersistentDocumentImplementation(this.Spy);
 }