C# 클래스 FileFind.Meshwork.AckMethod

Stores information used to invoke a method after recieving an ack for a specific messageID.
파일 보기 프로젝트 열기: codebutler/meshwork 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
MessageID string
args object[]

공개 메소드들

메소드 설명
AckMethod ( ) : System
AckMethod ( string messageID, MethodEventHandler method, object args ) : System
CallMethod ( System.DateTime TimeReceived ) : void

Invokes the method.

메소드 상세

AckMethod() 공개 메소드

public AckMethod ( ) : System
리턴 System

AckMethod() 공개 메소드

public AckMethod ( string messageID, MethodEventHandler method, object args ) : System
messageID string
method MethodEventHandler
args object
리턴 System

CallMethod() 공개 메소드

Invokes the method.
public CallMethod ( System.DateTime TimeReceived ) : void
TimeReceived System.DateTime The DateTime the ack for this message was received.
리턴 void

프로퍼티 상세

MessageID 공개적으로 프로퍼티

The MessageID this AckMethod is intended for.
public string MessageID
리턴 string

args 공개적으로 프로퍼티

An object[] of arguments to be passed to Method
public object[] args
리턴 object[]