BloombergFLP.CollectdWin.EventValue.EventValue C# (CSharp) Method

EventValue() public method

public EventValue ( string hostname, long timestamp, int nLevel, string title, string message, long id ) : System
hostname string
timestamp long
nLevel int
title string
message string
id long
return System
        public EventValue(string hostname, long timestamp, int nLevel, string title, string message, long id)
        {
            Level = EventValue.levelToString(nLevel);
            Timestamp = timestamp;
            Title = title;
            Message = message;
            HostName = hostname;
            Id = id;

            PluginName = "WindowsEvent";
            PluginInstanceName = "";
            TypeName = "";
            TypeInstanceName = "";
        }