получить информацию о сеансе ftp из iis - PullRequest
0 голосов
/ 27 сентября 2010

Я пытаюсь получить информацию о сеансе для IIS FTP с использованием C #, Windows 2008 и IIS 7.5.Мне нужна информация, например, вошедшие в систему пользователи и т. Д.

1 Ответ

0 голосов
/ 08 февраля 2011

Попробуйте:

using System;
using Microsoft.Web.Administration;

internal static class Sample
{
    private static void Main()
    {
        using (ServerManager serverManager = new ServerManager())
        {
            Configuration config = serverManager.GetApplicationHostConfiguration();
            ConfigurationSection sitesSection = config.GetSection("system.applicationHost/sites");
            ConfigurationElementCollection sitesCollection = sitesSection.GetCollection();

            ConfigurationElement siteElement = FindElement(sitesCollection, "site", "name", "YOURSITENAMEHERE");
            if (siteElement == null) throw new InvalidOperationException("Element not found!");

            ConfigurationElement ftpServerElement = siteElement.GetChildElement("ftpServer");
            ConfigurationElementCollection sessionsElement = ftpServerElement.GetChildElement("sessions").GetCollection();

            Console.WriteLine(String.Format("Active Sessions: {0}", sessionsElement.Count));

            foreach (ConfigurationElement sessionElement in sessionsElement)
            {


                Console.WriteLine(String.Format("\tSession ID: {0}",
                    sessionElement.Attributes["sessionId"].Value.ToString()));
                Console.WriteLine(String.Format("\t\tUser Name: {0}",
                    sessionElement.Attributes["userName"].Value.ToString()));
                Console.WriteLine(String.Format("\t\tPrevious Command: {0}",
                    sessionElement.Attributes["previousCommand"].Value.ToString()));
            }
        }
    }

    private static ConfigurationElement FindElement(ConfigurationElementCollection collection, string elementTagName, params string[] keyValues)
    {
        foreach (ConfigurationElement element in collection)
        {
            if (String.Equals(element.ElementTagName, elementTagName, StringComparison.OrdinalIgnoreCase))
            {
                bool matches = true;
                for (int i = 0; i < keyValues.Length; i += 2)
                {
                    object o = element.GetAttributeValue(keyValues[i]);
                    string value = null;
                    if (o != null)
                    {
                        value = o.ToString();
                    }
                    if (!String.Equals(value, keyValues[i + 1], StringComparison.OrdinalIgnoreCase))
                    {
                        matches = false;
                        break;
                    }
                }
                if (matches)
                {
                    return element;
                }
            }
        }
        return null;
    }
}

HTH, MemphiZ

Ссылка: http://www.iis.net/configreference/system.applicationhost/sites/site/ftpserver/sessions

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...