public int Count { get; }
An integer that represents the number of IP filters.
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 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 FiltersIPFilters filters = _server.GetIPFilters();//Get the filters types countCount = filters.Count;// print the IP Filters to a stringstrIPFilters += "--- 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";elsestrIPFilters += "Deny\n";}// display a message contains the IP Filters stringMessageBox.Show(strIPFilters, "LEADTOOLS Media Streaming Examples", MessageBoxButtons.OK, MessageBoxIcon.Information);_result = true;}catch (Exception){_result = false;}}