public void RegisterReceive(ReceiveSettings settings, InstanceKey correlatesWith, Bookmark receiveBookmark) { this.OnRegisterReceive(settings, correlatesWith, receiveBookmark); }
protected abstract void OnRegisterReceive(ReceiveSettings settings, InstanceKey correlatesWith, Bookmark receiveBookmark);
ReceiveSettings GetReceiveSettings() { string actionName = null; if (!string.IsNullOrWhiteSpace(this.Action)) { actionName = this.Action; } else { // These values are null in the ReceiveReply configuration if (this.ServiceContractName != null && !string.IsNullOrWhiteSpace(this.OperationName)) { actionName = NamingHelper.GetMessageAction(new XmlQualifiedName(this.ServiceContractName.ToString()), this.OperationName, null, false); } } ReceiveSettings receiveSettings = new ReceiveSettings { Action = actionName, CanCreateInstance = this.CanCreateInstance, OwnerDisplayName = this.OwnerDisplayName }; return receiveSettings; }