Count Property (MIMETypes)

Summary
Retrieves the number of MIME types in the collection.
Syntax
C#
C++/CLI
public int Count { get; } 
public: 
property int Count { 
   int get(); 
} 

Property Value

An integer that represents the number of MIME types.

Remarks

If the method fails, an error is raised. For more information, refer to the Error Codes.

Example
C#
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; 
   } 
} 
Requirements

Target Platforms

See Also

Reference

MIMETypes Class

MIMETypes Members

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MediaStreaming Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.