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