Пример #1
0
        public void Init()
        {
            m_context = Context.Instance;

            m_channelUrls = new string[]
            {
                "http://www.youtube.com/user/psystarcraft",
                "http://day9tv.blip.tv/posts?view=archive&nsfw=dc"
            };

            m_downloadUrls = new string[]
            {
                "http://www.youtube.com/watch?v=oklB9_k5mNk",
                "http://day9tv.blip.tv/file/4593518/"
            };
        }
Пример #2
0
 public ChannelSourceFactory(Context context)
     : base(context)
 {
     CreatorType = typeof(ChannelSourceCreator);
 }
Пример #3
0
 public SourceFactoryBase(Context context)
 {
     Context = context;
 }
Пример #4
0
 //private SortedDictionary<string, string> m_registeredMediaTypes;
 public DownloadSourceFactory(Context context)
     : base(context)
 {
     CreatorType = typeof(DownloadSourceCreator);
 }