public FeedFactory(string appKey, RequestProcessor processor) { if (string.IsNullOrEmpty(appKey)) throw new ArgumentException("appKey"); if (processor == null) throw new ArgumentException("processor"); this.appKey = appKey; this.processor = processor; }
internal Feed(string appKey, long id, RequestProcessor processor) { if (string.IsNullOrEmpty(appKey)) throw new ArgumentException("appKey"); if (processor == null) throw new ArgumentException("processor"); this.appKey = appKey; this.id = id; this.processor = processor; }