1 type derived from SamlStatement
System.IdentityModel (1)
System\IdentityModel\Tokens\SamlSubjectStatement.cs (1)
14
public abstract class SamlSubjectStatement :
SamlStatement
19 references to SamlStatement
System.IdentityModel (19)
System\IdentityModel\Tokens\SamlAssertion.cs (7)
28
readonly ImmutableCollection<
SamlStatement
> statements = new ImmutableCollection<
SamlStatement
>();
54
IEnumerable<
SamlStatement
> samlStatements
77
foreach (
SamlStatement
samlStatement in samlStatements)
189
public IList<
SamlStatement
> Statements
254
foreach (
SamlStatement
statement in this.statements)
561
SamlStatement
statement = samlSerializer.LoadStatement(wrappedReader, keyInfoSerializer, outOfBandTokenResolver);
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (11)
134
IEnumerable<
SamlStatement
> statements = CreateStatements(tokenDescriptor);
235
protected virtual SamlAssertion CreateAssertion(string issuer, SamlConditions conditions, SamlAdvice advice, IEnumerable<
SamlStatement
> statements)
306
protected virtual IEnumerable<
SamlStatement
> CreateStatements(SecurityTokenDescriptor tokenDescriptor)
308
Collection<
SamlStatement
> statements = new Collection<
SamlStatement
>();
1173
protected virtual void ProcessStatement(IList<
SamlStatement
> statements, ClaimsIdentity subject, string issuer)
1187
foreach (
SamlStatement
samlStatement in statements)
2224
protected virtual
SamlStatement
ReadStatement(XmlReader reader)
2258
protected virtual void WriteStatement(XmlWriter writer,
SamlStatement
statement)
3516
private void ValidateStatements(IList<
SamlStatement
> statements)
3523
foreach (
SamlStatement
statement in statements)
System\IdentityModel\Tokens\SamlSerializer.cs (1)
130
public virtual
SamlStatement
LoadStatement(XmlDictionaryReader reader, SecurityTokenSerializer keyInfoSerializer, SecurityTokenResolver outOfBandTokenResolver)