18 references to GetPropertyOrDefault
System.ServiceModel.Primitives (18)
System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (3)
202ChannelParameterCollection channelParameters = initiatorRequirement.GetPropertyOrDefault<ChannelParameterCollection>(ServiceModelSecurityTokenRequirement.ChannelParametersCollectionProperty, null); 214sessionTokenProvider.Via = initiatorRequirement.GetPropertyOrDefault<Uri>(InitiatorServiceModelSecurityTokenRequirement.ViaProperty, null); 249acceleratedTokenProvider.Via = initiatorRequirement.GetPropertyOrDefault<Uri>(InitiatorServiceModelSecurityTokenRequirement.ViaProperty, null);
System\ServiceModel\Security\Tokens\InitiatorServiceModelSecurityTokenRequirement.cs (4)
22return GetPropertyOrDefault<EndpointAddress>(TargetAddressProperty, null); 34return GetPropertyOrDefault<Uri>(ViaProperty, null); 46return GetPropertyOrDefault(IsOutOfBandTokenProperty, false); 58return GetPropertyOrDefault(PreferSslCertificateAuthenticatorProperty, false);
System\ServiceModel\Security\Tokens\RecipientServiceModelSecurityTokenRequirement.cs (1)
20return GetPropertyOrDefault<Uri>(ListenUriProperty, null);
System\ServiceModel\Security\Tokens\ServiceModelSecurityTokenRequirement.cs (10)
91return GetPropertyOrDefault(IsInitiatorProperty, false); 99return GetPropertyOrDefault<SecurityAlgorithmSuite>(SecurityAlgorithmSuiteProperty, null); 111return GetPropertyOrDefault<SecurityBindingElement>(SecurityBindingElementProperty, null); 123return GetPropertyOrDefault<EndpointAddress>(IssuerAddressProperty, null); 135return GetPropertyOrDefault<Binding>(IssuerBindingProperty, null); 147return GetPropertyOrDefault<SecurityBindingElement>(SecureConversationSecurityBindingElementProperty, null); 159return GetPropertyOrDefault<SecurityTokenVersion>(MessageSecurityVersionProperty, null); 184return GetPropertyOrDefault<string>(TransportSchemeProperty, null); 196return GetPropertyOrDefault(SupportSecurityContextCancellationProperty, defaultSupportSecurityContextCancellation); 208return GetPropertyOrDefault<EndpointAddress>(duplexClientLocalAddressProperty, null);