IMB3.TEventEntry.TEventEntry C# (CSharp) 메소드

TEventEntry() 공개 메소드

public TEventEntry ( TConnection aConnection, Int32 aID, string aEventName ) : System
aConnection TConnection
aID System.Int32
aEventName string
리턴 System
        public TEventEntry(TConnection aConnection, Int32 aID, string aEventName) {
            connection    = aConnection;
            ID            = aID;
            FEventName    = aEventName;
            FParent       = null;
            FIsPublished  = false;
            FIsSubscribed = false;
            FSubscribers  = false;
            FPublishers   = false;
        }