9 references to TryGetProperty
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\IdentityModel\Selectors\SecurityTokenRequirement.cs (7)
50
return (this.
TryGetProperty
<string>(TokenTypeProperty, out result)) ? result : null;
63
return (this.
TryGetProperty
<bool>(IsOptionalTokenProperty, out result)) ? result : defaultIsOptionalToken;
76
return (this.
TryGetProperty
<bool>(RequireCryptographicTokenProperty, out result)) ? result : defaultRequireCryptographicToken;
89
return (this.
TryGetProperty
<SecurityKeyUsage>(KeyUsageProperty, out result)) ? result : defaultKeyUsage;
103
return (this.
TryGetProperty
<SecurityKeyType>(KeyTypeProperty, out result)) ? result : defaultKeyType;
117
return (this.
TryGetProperty
<int>(KeySizeProperty, out result)) ? result : defaultKeySize;
149
if (!
TryGetProperty
<TValue>(propertyName, out result))
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\ServiceModelSecurityTokenRequirement.cs (2)
171
return (this.
TryGetProperty
<MessageSecurityVersion>(DefaultMessageSecurityVersionProperty, out messageSecurityVersion)) ? messageSecurityVersion : null;
218
if (!
TryGetProperty
<TValue>(propertyName, out result))