- Thread starter
- #41
Hi moiristo!
I'm working on this when I get the time. So far it's coming along well. I have got a good backbone in place which allows mini IPTV plugins to be plugged into this host plugin via an interface which looks like the following:-
public interface IMiniIPTVPlugin
{
/// <summary>
/// Should return a multi-dimensional array return in this order "(string
/// channelname, string channelDescription, string genre, string language, string
/// country, string streamURL)"
/// </summary>
/// <returns>A multi-dimensional array</returns>
string[,] IPTVChannel();
string Author();
Form SetupForm();
}
The interface is my biggest worry. If I get it wrong then it will cause a lot of bother down the line. The IPTVChannel method when implemented should return a multi-dimensional array which contains the following:
-Channel Name
-Channel Description
-Genre
-Language
-Country
-Stream URL
Can you think of anything else?
Phil
I'm working on this when I get the time. So far it's coming along well. I have got a good backbone in place which allows mini IPTV plugins to be plugged into this host plugin via an interface which looks like the following:-
public interface IMiniIPTVPlugin
{
/// <summary>
/// Should return a multi-dimensional array return in this order "(string
/// channelname, string channelDescription, string genre, string language, string
/// country, string streamURL)"
/// </summary>
/// <returns>A multi-dimensional array</returns>
string[,] IPTVChannel();
string Author();
Form SetupForm();
}
The interface is my biggest worry. If I get it wrong then it will cause a lot of bother down the line. The IPTVChannel method when implemented should return a multi-dimensional array which contains the following:
-Channel Name
-Channel Description
-Genre
-Language
-Country
-Stream URL
Can you think of anything else?
Phil