Reset Method (MIMETypes)

Summary
Resets the collection to its default values.
Syntax
C#
C++/CLI
public void Reset() 
public: 
void Reset();  
Remarks

Reset is performed on the parameters stored in memory. To change the file settings call the SetMIMETypes method.

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 ResetMIMETypesExample() 
{ 
   try 
   { 
      // create an instance of the server object 
      _server = new Leadtools.MediaStreaming.Server(); 
 
      // retrieve a copy of the MIME Types 
      MIMETypes Types = _server.GetMIMETypes(); 
 
      // reset 
      Types.Reset(); 
 
      // copy the MIME Types to the server 
      _server.SetMIMETypes(Types); 
 
      _result = true; 
   } 
   catch (Exception) 
   { 
      _result = false; 
   } 
} 
Requirements

Target Platforms

See Also

Reference

MIMETypes Class

MIMETypes Members

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

Leadtools.MediaStreaming Assembly

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