6 overrides of Properties
System.ServiceModel.Primitives (6)
System\ServiceModel\Channels\BinaryMessageEncoder.cs (1)
1558public override MessageProperties Properties
System\ServiceModel\Channels\ContentOnlyMessage.cs (1)
37public override MessageProperties Properties
System\ServiceModel\Channels\DelegatingMessage.cs (1)
34public override MessageProperties Properties
System\ServiceModel\Channels\Message.cs (3)
1097public override MessageProperties Properties 1411public override MessageProperties Properties 1646public override MessageProperties Properties
81 references to Properties
Client.ClientBase.IntegrationTests (3)
ClientBaseTestHelpers.cs (1)
110request.Properties.Add(HttpRequestMessageProperty.Name, httpRequestMessage);
MessageInspectorTestHelpers.cs (2)
117if (request.Properties.TryGetValue(HttpRequestMessageProperty.Name, out obj2)) 128request.Properties.Add(HttpRequestMessageProperty.Name, property);
System.ServiceModel.Http (12)
System\ServiceModel\Channels\HttpChannelFactory.cs (3)
720if (message.Properties.TryGetValue(HttpRequestMessageProperty.Name, out property)) 1032request.Properties.Add("System.ServiceModel.Channel.MtomMessageEncoder.WriteMessageHeaders", false); 1167if (message.Properties.TryGetValue(HttpRequestMessageProperty.Name, out property))
System\ServiceModel\Channels\HttpResponseMessageHelper.cs (4)
116message.Headers.To = message.Properties.Via; 125message.Properties.Add(HttpResponseMessageProperty.Name, responseProperty); 126message.Properties.Add("_System.Net.HttpStatusCode", responseProperty.StatusCode); 127message.Properties.Via = message.Version.Addressing.AnonymousUri;
System\ServiceModel\Channels\HttpTransportSecurityHelpers.cs (2)
24if (!message.Properties.TryGetValue(HttpRequestMessageProperty.Name, out requestProperty)) 27message.Properties.Add(HttpRequestMessageProperty.Name, requestProperty);
System\ServiceModel\Channels\MessageContent.cs (1)
59if (_message.Properties.TryGetValue(HttpRequestMessageProperty.Name, out property))
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (2)
407message.Properties.Via = _localVia; 486allowOutputBatching = message.Properties.AllowOutputBatching;
System.ServiceModel.NetFramingBase (5)
System\ServiceModel\Channels\FramingChannels.cs (1)
57allowOutputBatching = message.Properties.AllowOutputBatching;
System\ServiceModel\Channels\SingletonConnectionReader.cs (2)
131message.Properties.Via = _via; 132message.Properties.Security = (_security != null) ? (SecurityMessageProperty)_security.CreateCopy() : null;
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (2)
358message.Properties.Via = _localVia; 432allowOutputBatching = message.Properties.AllowOutputBatching;
System.ServiceModel.Primitives (60)
System\ServiceModel\Channels\BinaryMessageEncoder.cs (6)
562message.Properties.Encoder = this; 594message.Properties.Encoder = this; 634message.Properties.Encoder = this; 748message.Properties.Encoder = this; 809message.Properties.Add(SupportedCompressionTypesMessageProperty, supportedCompressionTypes); 863if (message.Properties.TryGetValue(SupportedCompressionTypesMessageProperty, out acceptEncoding) &&
System\ServiceModel\Channels\ChannelBindingMessageProperty.cs (2)
53return TryGet(message.Properties, out property); 82AddTo(message.Properties);
System\ServiceModel\Channels\DelegatingMessage.cs (1)
36get { return InnerMessage.Properties; }
System\ServiceModel\Channels\MessageBuffer.cs (3)
71_properties = new KeyValuePair<string, object>[message.Properties.Count]; 72((ICollection<KeyValuePair<string, object>>)message.Properties).CopyTo(_properties, 0); 136msg.Properties.CopyProperties(_properties);
System\ServiceModel\Channels\MtomMessageEncoder.cs (6)
382message.Properties.Encoder = this; 412message.Properties.Encoder = this; 452if (message.Properties.TryGetValue("System.ServiceModel.Channel.MtomMessageEncoder.WriteMessageHeaders", out object boolAsObject) && boolAsObject is bool) 476message.Properties.Encoder = this; 542if (message.Properties.TryGetValue("System.ServiceModel.Channel.MtomMessageEncoder.WriteMessageHeaders", out object boolAsObject) && boolAsObject is bool) 560message.Properties.Encoder = this;
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (5)
812request.Properties.AllowOutputBatching = false; 1715message.Properties.AllowOutputBatching = false; 1727message.Properties.AllowOutputBatching = false; 1920message.Properties.AllowOutputBatching = false; 1931message.Properties.AllowOutputBatching = false;
System\ServiceModel\Channels\ReliableOutputConnection.cs (1)
70message.Properties.AllowOutputBatching = false;
System\ServiceModel\Channels\RequestReplyCorrelator.cs (1)
142request.Properties.AllowOutputBatching = false;
System\ServiceModel\Channels\ServiceChannel.cs (2)
1176message.Properties.AllowOutputBatching = true; 1195message.Properties.CopyProperties(context.OutgoingMessageProperties);
System\ServiceModel\Channels\TextMessageEncoder.cs (4)
426message.Properties.Encoder = this; 458message.Properties.Encoder = this; 524message.Properties.Encoder = this; 574message.Properties.Encoder = this;
System\ServiceModel\Channels\TransmissionStrategy.cs (1)
203message.Properties.AllowOutputBatching = false;
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;
System\ServiceModel\Diagnostics\TraceUtility.cs (4)
78message.Properties[TraceUtility.ActivityIdKey] = activity; 102if (message.Properties.TryGetValue(TraceUtility.ActivityIdKey, out property)) 136message.Properties[TraceUtility.ActivityIdKey] = false; 579message.Properties[TraceUtility.ActivityIdKey] = activity;
System\ServiceModel\Dispatcher\ClientRuntime.cs (2)
456if (message.Properties.ContainsKey("_System.Net.HttpStatusCode")) 458HttpStatusCode statusCode = (HttpStatusCode)message.Properties["_System.Net.HttpStatusCode"];
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (2)
344message.Properties.MergeProperties(context.OutgoingMessageProperties); 450rpc.Reply.Properties[EventTraceActivity.Name] = rpc.EventTraceActivity;
System\ServiceModel\Dispatcher\MessageRpc.cs (1)
290TraceUtility.SetActivityId(Request.Properties);
System\ServiceModel\Dispatcher\OperationFormatter.cs (2)
460MessageProperties properties = message.Properties; 483MessageProperties properties = message.Properties;
System\ServiceModel\Dispatcher\StreamFormatter.cs (2)
308if (_message.Properties.ContainsKey(BufferedReadStream.BufferedReadStreamPropertyName)) 311_message.Properties[BufferedReadStream.BufferedReadStreamPropertyName] as BufferedReadStream;
System\ServiceModel\EndpointAddress.cs (1)
300message.Properties.Via = message.Headers.To;
System\ServiceModel\OperationContext.cs (1)
242return message.Properties;
System\ServiceModel\Security\AcceleratedTokenProvider.cs (1)
195SecurityMessageProperty serverContextProperty = incomingMessage.Properties.Security;
System\ServiceModel\Security\IssuanceTokenProviderBase.cs (1)
573nextMessage.Properties.CopyProperties(nextMessageProperties);
System\ServiceModel\Security\SecurityMessageProperty.cs (3)
201if (message.Properties != null) 203result = message.Properties.Security; 209message.Properties.Security = result;
System\ServiceModel\Security\SecurityProtocol.cs (2)
413SecurityMessageProperty messageProperty = message.Properties.Security; 472SecurityMessageProperty supportingTokensProperty = message.Properties.Security;
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (2)
609SecurityMessageProperty serverContextProperty = response.Properties.Security; 679result.Properties.Security = supportingTokenProperty;
System.ServiceModel.Primitives.Tests (1)
ServiceModel\MessageContractTest.4.4.0.cs (1)
161foreach (var property in msg.Properties)