public int Count { get; }
An integer that represents the number of MIME types.
If the method fails, an error is raised. For more information, refer to the Error Codes.
using Leadtools;
using Leadtools.MediaStreaming;
public Server _server = null;
public bool _result = false;
public void PrintMIMETypesExample()
{
try
{
int Count = 0;
string strMIMETypes = "";
// create an instance of the server object
_server = new Leadtools.MediaStreaming.Server();
// retrieve a copy of the MIME Types
MIMETypes Types = _server.GetMIMETypes();
//Get the MIME types count
Count = Types.Count;
// print the MIME types to a string
strMIMETypes += "--- MIME Types ---\n\n";
for (int i = 0; i < Count; i++)
{
string extension;
string contenttype;
Types.Item(i, out extension, out contenttype);
strMIMETypes += string.Format("MIME Type[{0}]: .{1}, {2}\n", i.ToString(), extension, contenttype);
}
// display a message contains the MIME types string
MessageBox.Show(strMIMETypes, "LEADTOOLS Media Streaming Examples", MessageBoxButtons.OK, MessageBoxIcon.Information);
_result = true;
}
catch (Exception)
{
_result = false;
}
}