24 references to GetPropertyOrDefault
System.ServiceModel (24)
System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (5)
115spnegoTokenProvider.Via = initiatorRequirement.GetPropertyOrDefault<Uri>(InitiatorServiceModelSecurityTokenRequirement.ViaProperty, null); 212tlsnegoTokenProvider.Via = initiatorRequirement.GetPropertyOrDefault<Uri>(InitiatorServiceModelSecurityTokenRequirement.ViaProperty, null); 230ChannelParameterCollection channelParameters = initiatorRequirement.GetPropertyOrDefault<ChannelParameterCollection>(ServiceModelSecurityTokenRequirement.ChannelParametersCollectionProperty, null); 242sessionTokenProvider.Via = initiatorRequirement.GetPropertyOrDefault<Uri>(InitiatorServiceModelSecurityTokenRequirement.ViaProperty, null); 276acceleratedTokenProvider.Via = initiatorRequirement.GetPropertyOrDefault<Uri>(InitiatorServiceModelSecurityTokenRequirement.ViaProperty, null);
System\ServiceModel\Security\ServiceCredentialsSecurityTokenManager.cs (1)
70IMessageFilterTable<EndpointAddress> endpointFilterTable = recipientRequirement.GetPropertyOrDefault<IMessageFilterTable<EndpointAddress>>(ServiceModelSecurityTokenRequirement.EndpointFilterTableProperty, null);
System\ServiceModel\Security\Tokens\InitiatorServiceModelSecurityTokenRequirement.cs (4)
31return GetPropertyOrDefault<EndpointAddress>(TargetAddressProperty, null); 43return GetPropertyOrDefault<Uri>(ViaProperty, null); 55return GetPropertyOrDefault<bool>(IsOutOfBandTokenProperty, false); 67return GetPropertyOrDefault<bool>(PreferSslCertificateAuthenticatorProperty, false);
System\ServiceModel\Security\Tokens\RecipientServiceModelSecurityTokenRequirement.cs (4)
31return GetPropertyOrDefault<Uri>(ListenUriProperty, null); 43return GetPropertyOrDefault<AuditLogLocation>(AuditLogLocationProperty, ServiceSecurityAuditBehavior.defaultAuditLogLocation); 55return GetPropertyOrDefault<bool>(SuppressAuditFailureProperty, ServiceSecurityAuditBehavior.defaultSuppressAuditFailure); 67return GetPropertyOrDefault<AuditLevel>(MessageAuthenticationAuditLevelProperty, ServiceSecurityAuditBehavior.defaultMessageAuthenticationAuditLevel);
System\ServiceModel\Security\Tokens\ServiceModelSecurityTokenRequirement.cs (10)
97return GetPropertyOrDefault<bool>(IsInitiatorProperty, false); 105return GetPropertyOrDefault<SecurityAlgorithmSuite>(SecurityAlgorithmSuiteProperty, null); 117return GetPropertyOrDefault<SecurityBindingElement>(SecurityBindingElementProperty, null); 129return GetPropertyOrDefault<EndpointAddress>(IssuerAddressProperty, null); 141return GetPropertyOrDefault<Binding>(IssuerBindingProperty, null); 153return GetPropertyOrDefault<SecurityBindingElement>(SecureConversationSecurityBindingElementProperty, null); 165return GetPropertyOrDefault<SecurityTokenVersion>(MessageSecurityVersionProperty, null); 190return GetPropertyOrDefault<string>(TransportSchemeProperty, null); 202return GetPropertyOrDefault<bool>(SupportSecurityContextCancellationProperty, defaultSupportSecurityContextCancellation); 214return GetPropertyOrDefault<EndpointAddress>(duplexClientLocalAddressProperty, null);