コード例 #1
0
 /// <summary>
 /// Public constructor supplying the interface used to store scanned songs
 /// </summary>
 /// <param name="songInterface"></param>
 public FTPScanner(SongStorage songInterface)
 {
     storageInterface = songInterface;
 }
コード例 #2
0
ファイル: UPnPScanner.cs プロジェクト: GrumpyTrev/DNLACore
 /// <summary>
 /// Public constructor supplying the interface used to store scanned songs
 /// </summary>
 /// <param name="songInterface"></param>
 public UPnPScanner(SongStorage songInterface) => storageInterface = songInterface;
コード例 #3
0
 /// <summary>
 /// Public constructor supplying the interface used to store scanned songs
 /// </summary>
 /// <param name="songInterface"></param>
 public InternalScanner(SongStorage songInterface)
 {
     storageInterface = songInterface;
 }