RegisterEndpoint() 공개 메소드

Save the given address and Endpoint within our internal list. This is used for management of inproc endpoints.
public RegisterEndpoint ( [ address, [ endpoint ) : bool
address [ the textual name to give this endpoint
endpoint [ the Endpoint to remember
리턴 bool
예제 #1
0
 protected bool RegisterEndpoint([NotNull] string addr, [NotNull] Ctx.Endpoint endpoint)
 {
     return(m_ctx.RegisterEndpoint(addr, endpoint));
 }
예제 #2
0
 protected bool RegisterEndpoint(string addr, Ctx.Endpoint endpoint)
 {
     return(m_ctx.RegisterEndpoint(addr, endpoint));
 }