Count Property (IPFilters)

Summary
Retrieves the number of IP filters 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 IP filters.

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 PrintIPFiltersExample() 
{ 
   try 
   { 
      int Count = 0; 
      string strIPFilters = ""; 
 
      // create an instance of the server object 
      _server = new Leadtools.MediaStreaming.Server(); 
 
      // retrieve a copy of the IP Filters 
      IPFilters filters = _server.GetIPFilters(); 
 
      //Get the filters types count 
      Count = filters.Count; 
 
      // print the IP Filters to a string 
 
      strIPFilters += "--- IP Filters ---\n\n"; 
 
      for (int i = 0; i < Count; i++) 
      { 
         string ipfirst; 
         string iplast; 
         bool allow; 
 
         filters.Item(i, out ipfirst, out iplast, out allow); 
 
         strIPFilters += string.Format("IP Filter[{0}]: .{1}, {2}, ", i.ToString(), ipfirst, iplast); 
         if (allow) 
            strIPFilters += "Allow\n"; 
         else 
            strIPFilters += "Deny\n"; 
      } 
 
      // display a message contains the IP Filters string 
      MessageBox.Show(strIPFilters, "LEADTOOLS Media Streaming Examples", MessageBoxButtons.OK, MessageBoxIcon.Information); 
 
      _result = true; 
   } 
   catch (Exception) 
   { 
      _result = false; 
   } 
} 
Requirements

Target Platforms

See Also

Reference

IPFilters Class

IPFilters 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.