コード例 #1
0
 public AttributeValueAssertion(
     AttributeDescription attributeDesc,
     AssertionValue assertionValue)
 {
     this.attributeDesc  = attributeDesc;
     this.assertionValue = assertionValue;
 }
コード例 #2
0
 public AttributeValueAssertion(
     AttributeDescription attributeDesc,
     AssertionValue assertionValue)
 {
     this.attributeDesc = attributeDesc;
     this.assertionValue = assertionValue;
 }
コード例 #3
0
 public MatchingRuleAssertion(
     MatchingRuleId matchingRule,
     AttributeDescription type,
     AssertionValue matchValue,
     Asn1Boolean dnAttributes)
 {
     this.matchingRule = matchingRule;
     this.type         = type;
     this.matchValue   = matchValue;
     this.dnAttributes = dnAttributes;
 }
コード例 #4
0
 public MatchingRuleAssertion(
     MatchingRuleId matchingRule,
     AttributeDescription type,
     AssertionValue matchValue,
     Asn1Boolean dnAttributes)
 {
     this.matchingRule = matchingRule;
     this.type = type;
     this.matchValue = matchValue;
     this.dnAttributes = dnAttributes;
 }
コード例 #5
0
 public AttributeValueAssertion()
 {
     this.attributeDesc  = null;
     this.assertionValue = null;
 }