5 overrides of Properties
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BinaryMessageEncoder.cs (1)
1560
public override MessageProperties
Properties
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContentOnlyMessage.cs (1)
36
public override MessageProperties
Properties
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (3)
988
public override MessageProperties
Properties
1304
public override MessageProperties
Properties
1519
public override MessageProperties
Properties
51 references to Properties
dotnet-svcutil-lib (51)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BinaryMessageEncoder.cs (6)
572
message.
Properties
.Encoder = this;
604
message.
Properties
.Encoder = this;
644
message.
Properties
.Encoder = this;
750
message.
Properties
.Encoder = this;
811
message.
Properties
.Add(SupportedCompressionTypesMessageProperty, supportedCompressionTypes);
865
if (message.
Properties
.TryGetValue<string>(SupportedCompressionTypesMessageProperty, out acceptEncoding) &&
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBindingMessageProperty.cs (2)
57
return TryGet(message.
Properties
, out property);
86
AddTo(message.
Properties
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (2)
71
message.
Properties
[ConnectionMessageProperty.Name] = _connection;
81
allowOutputBatching = message.
Properties
.AllowOutputBatching;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (2)
624
if (message.
Properties
.TryGetValue(HttpRequestMessageProperty.Name, out property))
1048
if (message.
Properties
.TryGetValue(HttpRequestMessageProperty.Name, out property))
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpRequestMessageExtensionMethods.cs (1)
29
CopyProperties(message.
Properties
, properties);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpRequestMessageProperty.cs (1)
145
HttpRequestMessageProperty property = message.
Properties
.GetValue<HttpRequestMessageProperty>(HttpRequestMessageProperty.Name);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpResponseMessageHelper.cs (3)
114
message.Headers.To = message.
Properties
.Via;
123
message.
Properties
.Add(HttpResponseMessageProperty.Name, responseProperty);
124
message.
Properties
.Via = message.Version.Addressing.AnonymousUri;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpResponseMessageProperty.cs (1)
170
HttpResponseMessageProperty property = message.
Properties
.GetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageBuffer.cs (3)
67
_properties = new KeyValuePair<string, object>[message.
Properties
.Count];
68
((ICollection<KeyValuePair<string, object>>)message.
Properties
).CopyTo(_properties, 0);
124
msg.
Properties
.CopyProperties(_properties);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageContent.cs (1)
53
if (_message.
Properties
.TryGetValue(HttpRequestMessageProperty.Name, out property))
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestReplyCorrelator.cs (1)
127
request.
Properties
.AllowOutputBatching = false;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (2)
1161
message.
Properties
.AllowOutputBatching = true;
1180
message.
Properties
.CopyProperties(context.OutgoingMessageProperties);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (1)
301
message.
Properties
.Security = (SecurityMessageProperty)_security.CreateCopy();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TextMessageEncoder.cs (4)
421
message.
Properties
.Encoder = this;
449
message.
Properties
.Encoder = this;
493
message.
Properties
.Encoder = this;
537
message.
Properties
.Encoder = this;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (2)
464
message.
Properties
.Via = _localVia;
543
allowOutputBatching = message.
Properties
.AllowOutputBatching;
FrameworkFork\System.ServiceModel\System\ServiceModel\Diagnostics\EventTraceActivityHelper.cs (4)
20
if (!message.
Properties
.ContainsKey(EventTraceActivity.Name))
22
message.
Properties
.Add(EventTraceActivity.Name, activity);
42
if (message.
Properties
.TryGetValue(EventTraceActivity.Name, out property))
74
message.
Properties
[EventTraceActivity.Name] = eventTraceActivity;
FrameworkFork\System.ServiceModel\System\ServiceModel\Diagnostics\TraceUtility.cs (4)
91
if (message.
Properties
.TryGetValue(TraceUtility.ActivityIdKey, out property))
130
message.
Properties
[TraceUtility.ActivityIdKey] = false;
186
message.
Properties
[TraceUtility.ActivityIdKey] = activity;
488
message.
Properties
[TraceUtility.ActivityIdKey] = activity;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ClientRuntime.cs (1)
469
HttpResponseMessageProperty prop = message.
Properties
[HttpResponseMessageProperty.Name] as HttpResponseMessageProperty;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (2)
278
message.
Properties
.MergeProperties(context.OutgoingMessageProperties);
382
rpc.Reply.
Properties
[EventTraceActivity.Name] = rpc.EventTraceActivity;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageRpc.cs (1)
300
TraceUtility.SetActivityId(this.Request.
Properties
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationFormatter.cs (2)
441
MessageProperties properties = message.
Properties
;
462
MessageProperties properties = message.
Properties
;
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointAddress.cs (1)
334
message.
Properties
.Via = message.Headers.To;
FrameworkFork\System.ServiceModel\System\ServiceModel\OperationContext.cs (1)
216
return message.
Properties
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityMessageProperty.cs (3)
209
if (message.
Properties
!= null)
210
result = message.
Properties
.Security;
215
message.
Properties
.Security = result;