Example #1
0
 /// <summary>
 /// Initializes a new instance of the FeedFileStorage class with a specified feed location path.
 /// </summary>
 /// <param name="path">Feed location path.</param>
 public FeedFileStorage(string path)
 {
     this.path       = path;
     this.serializer = new FeedSerializer();
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the FeedInputChannel class
 /// </summary>
 public FeedFileStorage()
 {
     this.path          = "";
     this.feedSizeLimit = 200;             //200 KB
     this.serializer    = new FeedSerializer();
 }