为什么我不能称这种方法?

时间:2013-07-11 15:28:41

标签: c# winforms class object methods

我正在尝试从服务中的另一个类调用一个方法,但是它说我尝试调用的方法不存在,并且如果可能的话会想要一些帮助。

该程序是一个工作项目,它记录用户不活动,因为我们遇到的问题是人们没有拿起电话,代码如下,这是一个topshelf服务,消耗来自rabbitMQ的消息,我希望它消费消息并将它们转发到数据库=]

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using NLog;
using IWshRuntimeLibrary;
using Topshelf;
using System.Data.Odbc;
using EasyNetQ;
using RabbitMQ;
using EasyNetQ.Topology;
using System.Threading.Tasks;
using System.Windows.Forms;
using AccessEye;

namespace LogService
{

    public class WindowsServiceHost : ServiceControl, ServiceShutdown
    {
        public static readonly Logger Logger = LogManager.GetCurrentClassLogger();


        public bool Start(HostControl hostControl)
        {

            Program.bus = RabbitHutch.CreateBus("host=as01.access.local;virtualHost=DEV-Reece;username=reece;password=reece").Advanced;

            //var bus = RabbitHutch.CreateBus("host=as01.access.local;virtualHost=DEV-Reece;username=reece;password=reece").Advanced;
            var queue = Queue.Declare(true, false, true, null);
            var exchange = Exchange.DeclareFanout("UserActivityFanout", true, false, null);
            var exchangeTopic = Exchange.DeclareTopic("UserActivity", true, false, null);
            queue.BindTo(exchange, "#");
            exchange.BindTo(exchangeTopic, "#");
            Program.bus.Subscribe<AccessEye.LogData>(queue, (msg, messageRecInfo) => Task.Factory.StartNew(() =>
            {
                WriteLogDataToDb();
                Console.WriteLine(msg.Body.UserName + " -- " + msg.Body.ComputerName + " -- " + msg.Body.EventType + " -- " + msg.Body.TeamviewerId);
            }));

            return true;

        }

这是我试图调用的方法

 public partial class AppForm : Form
    {

        public static readonly Logger Logger = LogManager.GetCurrentClassLogger();
        private Screensaver watcher;
        public Inactivity inactivity;
        IAdvancedBus bus;
        IExchange exchange;

    public void WriteLogDataToDb(LogData data)
            {
                using (var db = new LogService.UserActivityDataContext())
                {
                    DbLogData logData = AutoMapper.Mapper.Map<LogData, DbLogData>(data);

                    int t = (int)data.EventType;

                    EventType eventType = db.EventTypes.FirstOrDefault(r => r.Id == t);

                    if (eventType == null)
                    {
                        eventType = db.EventTypes.Add(new EventType
                        {
                            Event = GetEnumDescriptionAttributeValue(data.EventType),
                            Id = (int)data.EventType
                        });
                        db.SaveChanges();
                    }
                    logData.EventTypeId = eventType.Id;
                    db.LogEvents.Add(logData);

                    db.SaveChanges();
                    }

    }

1 个答案:

答案 0 :(得分:2)

如果您声明WriteLogDataToDb()的班级被称为ClassA,那么请做两件事。制作方法static,您实际上必须通过它传递一些LogData数据。

public class AppForm
{
    public static void WriteLogDataToDb(LogData data)
    {
        using (var db = new LogService.UserActivityDataContext())
        {
            DbLogData logData = AutoMapper.Mapper.Map<LogData, DbLogData>(data);

            int t = (int)data.EventType;

            EventType eventType = db.EventTypes.FirstOrDefault(r => r.Id == t);

            if (eventType == null)
            {
                eventType = db.EventTypes.Add(new EventType
                {
                    Event = GetEnumDescriptionAttributeValue(data.EventType),
                    Id = (int)data.EventType
                });
                db.SaveChanges();
            }
            logData.EventTypeId = eventType.Id;
            db.LogEvents.Add(logData);

            db.SaveChanges();
        }
    }
}

然后在Start代码中,您必须致电AppForm.WriteLogDataToDb(data)

修改

现在这些类在两个不同的项目中,您需要添加引用,以便WindowsServiceHost可以使用AppForm。要做到这一点:

  1. 右键单击&gt;包含AppForm的项目的属性。在“应用程序”选项卡上,记下Assembly name:
  2. 右键点击WindowsServiceHost中的参考项,然后选择Add reference
  3. 转到Projects标签
  4. 添加步骤1中提到的Assembly name:
  5. 右键点击AppFormWindowsSerivceHost中的Resolve,然后添加您的使用声明。