2 types derived from CorrelationCallbackMessageProperty
System.ServiceModel (1)
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
1830
class RpcCorrelationCallbackMessageProperty :
CorrelationCallbackMessageProperty
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\InternalSendMessage.cs (1)
2599
class MessageCorrelationCallbackMessageProperty :
CorrelationCallbackMessageProperty
30 references to CorrelationCallbackMessageProperty
System.ServiceModel (28)
System\ServiceModel\Channels\ContextChannelRequestContext.cs (5)
77
CorrelationCallbackMessageProperty
callback;
78
if (
CorrelationCallbackMessageProperty
.TryGet(message, out callback))
86
replyMessage.Properties.Remove(
CorrelationCallbackMessageProperty
.Name);
116
CorrelationCallbackMessageProperty
correlationCallback;
133
if (
CorrelationCallbackMessageProperty
.TryGet(message, out this.correlationCallback))
System\ServiceModel\Channels\ContextExchangeCorrelationHelper.cs (1)
19
public static void AddOutgoingCorrelationCallbackData(
CorrelationCallbackMessageProperty
callback, Message message, bool client)
System\ServiceModel\Channels\ContextOutputChannelBase.cs (4)
67
CorrelationCallbackMessageProperty
callback = null;
74
if (
CorrelationCallbackMessageProperty
.TryGet(message, out callback))
107
CorrelationCallbackMessageProperty
correlationCallback;
124
if (
CorrelationCallbackMessageProperty
.TryGet(message, out this.correlationCallback))
System\ServiceModel\Channels\ContextRequestChannelBase.cs (5)
69
CorrelationCallbackMessageProperty
callback = null;
74
if (message != null &&
CorrelationCallbackMessageProperty
.TryGet(message, out callback))
114
CorrelationCallbackMessageProperty
correlationCallback;
130
if (
CorrelationCallbackMessageProperty
.TryGet(message, out this.correlationCallback))
229
this.requestMessage.Properties.Remove(
CorrelationCallbackMessageProperty
.Name);
System\ServiceModel\Channels\CorrelationCallbackMessageProperty.cs (4)
30
protected CorrelationCallbackMessageProperty(
CorrelationCallbackMessageProperty
callback)
71
public static bool TryGet(Message message, out
CorrelationCallbackMessageProperty
property)
80
public static bool TryGet(MessageProperties properties, out
CorrelationCallbackMessageProperty
property)
90
property = value as
CorrelationCallbackMessageProperty
;
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (8)
368
CorrelationCallbackMessageProperty
callback;
370
if (
CorrelationCallbackMessageProperty
.TryGet(reply, out callback))
399
reply.Properties[
CorrelationCallbackMessageProperty
.Name] = rpc.CorrelationCallback;
417
CorrelationCallbackMessageProperty
callback;
419
if (
CorrelationCallbackMessageProperty
.TryGet(reply, out callback))
464
reply.Properties[
CorrelationCallbackMessageProperty
.Name] = rpc.CorrelationCallback;
1832
CorrelationCallbackMessageProperty
innerCallback;
1839
public RpcCorrelationCallbackMessageProperty(
CorrelationCallbackMessageProperty
innerCallback,
System\ServiceModel\Dispatcher\MessageRpc.cs (1)
37
internal
CorrelationCallbackMessageProperty
CorrelationCallback;
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\InternalSendMessage.cs (2)
1011
instance.OperationContext.OutgoingMessageProperties.Add(
CorrelationCallbackMessageProperty
.Name,
1518
instance.RequestOrReply.Properties.Add(
CorrelationCallbackMessageProperty
.Name,