| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // SubjectIdentifierOrKey.cs - System.Security.Cryptography.Pkcs.SubjectIdentifierOrKey
- //
- // Author:
- // Sebastien Pouliot ([email protected])
- //
- // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
- //
- #if NET_1_2
- using System;
- namespace System.Security.Cryptography.Pkcs {
- public class SubjectIdentifierOrKey {
- private SubjectIdentifierOrKeyType _type;
- private object _value;
- internal SubjectIdentifierOrKey (SubjectIdentifierOrKeyType type, object value)
- {
- _type = type;
- _value = value;
- }
- // properties
- public SubjectIdentifierOrKeyType Type {
- get { return _type; }
- }
- public object Value {
- get { return _value; }
- }
- }
- }
- #endif
|