void ActorMethodPost(
     string actorType,
     string actorId,
     string applicationTypeName,
     string applicationName,
     string serviceTypeName,
     string serviceName,
     Guid partitionId,
     long replicaOrInstanceId,
     string nodeName,
     ActorCallType callType,
     string methodName)
 {
     WriteEvent(
         ActorMethodPostEventId,
         actorType,
         actorId,
         applicationTypeName,
         applicationName,
         serviceTypeName,
         serviceName,
         partitionId,
         replicaOrInstanceId,
         nodeName,
         callType,
         methodName);
 }
 private ActorMethodContext(string methodName, ActorCallType callType)
 {
     this.actorMethodName = methodName;
     this.actorCallType   = callType;
 }