In .:
[mono.git] / mcs / class / Novell.Directory.Ldap / Novell.Directory.Ldap.Asn1 / Asn1Boolean.cs
1 /******************************************************************************
2 * The MIT License
3 * Copyright (c) 2003 Novell Inc.  www.novell.com
4
5 * Permission is hereby granted, free of charge, to any person obtaining  a copy
6 * of this software and associated documentation files (the Software), to deal
7 * in the Software without restriction, including  without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
9 * copies of the Software, and to  permit persons to whom the Software is 
10 * furnished to do so, subject to the following conditions:
11
12 * The above copyright notice and this permission notice shall be included in 
13 * all copies or substantial portions of the Software.
14
15 * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *******************************************************************************/
23 //
24 // Novell.Directory.Ldap.Asn1.Asn1Boolean.cs
25 //
26 // Author:
27 //   Sunil Kumar (Sunilk@novell.com)
28 //
29 // (C) 2003 Novell, Inc (http://www.novell.com)
30 //
31
32 using System;
33
34 namespace Novell.Directory.Ldap.Asn1
35 {
36         
37         /// <summary> This class encapsulates the ASN.1 BOOLEAN type.</summary>
38         public class Asn1Boolean:Asn1Object
39         {
40                 
41                 private bool content;
42                 
43                 /// <summary> ASN.1 BOOLEAN tag definition.</summary>
44                 public const int TAG = 0x01;
45                 
46                 /// <summary> ID is added for Optimization.
47                 /// 
48                 /// ID needs only be one Value for every instance,
49                 /// thus we create it only once.
50                 /// </summary>
51                 public static readonly Asn1Identifier ID = new Asn1Identifier(Asn1Identifier.UNIVERSAL, false, TAG);
52                 /* Constructors for Asn1Boolean
53                 */
54                 
55                 /// <summary> Call this constructor to construct an Asn1Boolean
56                 /// object from a boolean value.
57                 /// 
58                 /// </summary>
59                 /// <param name="content">The boolean value to be contained in the
60                 /// this Asn1Boolean object
61                 /// </param>
62                 public Asn1Boolean(bool content):base(ID)
63                 {
64                         this.content = content;
65                         return ;
66                 }
67                 
68                 /// <summary> Constructs an Asn1Boolean object by decoding data from an
69                 /// input stream.
70                 /// 
71                 /// </summary>
72                 /// <param name="dec">The decoder object to use when decoding the
73                 /// input stream.  Sometimes a developer might want to pass
74                 /// in his/her own decoder object
75                 /// 
76                 /// </param>
77                 /// <param name="in">A byte stream that contains the encoded ASN.1
78                 /// 
79                 /// </param>
80                 [CLSCompliantAttribute(false)]
81                 public Asn1Boolean(Asn1Decoder dec, System.IO.Stream in_Renamed, int len):base(ID)
82                 {
83                         content = ((System.Boolean) dec.decodeBoolean(in_Renamed, len));
84                         return ;
85                 }
86                 
87                 /* Asn1Object implementation
88                 */
89                 
90                 /// <summary> Encode the current instance into the
91                 /// specified output stream using the specified encoder object.
92                 /// 
93                 /// </summary>
94                 /// <param name="enc">Encoder object to use when encoding self.
95                 /// 
96                 /// </param>
97                 /// <param name="out">The output stream onto which the encoded byte
98                 /// stream is written.
99                 /// </param>
100                 public override void  encode(Asn1Encoder enc, System.IO.Stream out_Renamed)
101                 {
102                         enc.encode(this, out_Renamed);
103                         return ;
104                 }
105                 
106                 /* Asn1Boolean specific methods
107                 */
108                 
109                 /// <summary> Returns the content of this Asn1Boolean as a boolean.</summary>
110                 public bool booleanValue()
111                 {
112                         return content;
113                 }
114                 
115                 /// <summary> Returns a String representation of this Asn1Boolean object.</summary>
116                 public override System.String ToString()
117                 {
118                         return base.ToString() + "BOOLEAN: " + content;
119                 }
120         }
121 }