コード例 #1
0
ファイル: Class1.cs プロジェクト: jdauie/squid
        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
ファイル: ChannelSourceFactory.cs プロジェクト: jdauie/squid
 public ChannelSourceFactory(Context context)
     : base(context)
 {
     CreatorType = typeof(ChannelSourceCreator);
 }
コード例 #3
0
ファイル: SourceFactoryBase.cs プロジェクト: jdauie/squid
 public SourceFactoryBase(Context context)
 {
     Context = context;
 }
コード例 #4
0
ファイル: DownloadSourceFactory.cs プロジェクト: jdauie/squid
 //private SortedDictionary<string, string> m_registeredMediaTypes;
 public DownloadSourceFactory(Context context)
     : base(context)
 {
     CreatorType = typeof(DownloadSourceCreator);
 }