**** Merged from MCS ****
[mono-project.git] / mcs / class / Novell.Directory.Ldap / Novell.Directory.Ldap.Asn1 / Asn1Enumerated.cs
blob0c084cee25e3bc8082a3d71713f73c594cbe3d19
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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 *******************************************************************************/
24 // Novell.Directory.Ldap.Asn1.Asn1Enumerated.cs
26 // Author:
27 // Sunil Kumar (Sunilk@novell.com)
29 // (C) 2003 Novell, Inc (http://www.novell.com)
32 using System;
34 namespace Novell.Directory.Ldap.Asn1
37 /// <summary> This class encapsulates the ASN.1 ENUMERATED type.</summary>
38 [CLSCompliantAttribute(true)]
39 public class Asn1Enumerated:Asn1Numeric
42 /// <summary> ASN.1 tag definition for ENUMERATED</summary>
43 public const int TAG = 0x0a;
45 /// <summary> ID is added for Optimization.
46 ///
47 /// ID needs only be one Value for every instance,
48 /// thus we create it only once.
49 /// </summary>
50 public static readonly Asn1Identifier ID = new Asn1Identifier(Asn1Identifier.UNIVERSAL, false, TAG);
51 /* Constructors for Asn1Enumerated
54 /// <summary> Call this constructor to construct an Asn1Enumerated
55 /// object from an integer value.
56 ///
57 /// </summary>
58 /// <param name="content">The integer value to be contained in the
59 /// this Asn1Enumerated object
60 /// </param>
61 public Asn1Enumerated(int content):base(ID, content)
63 return ;
66 /// <summary> Call this constructor to construct an Asn1Enumerated
67 /// object from a long value.
68 ///
69 /// </summary>
70 /// <param name="content">The long value to be contained in the
71 /// this Asn1Enumerated object
72 /// </param>
73 public Asn1Enumerated(long content):base(ID, content)
75 return ;
78 /// <summary> Constructs an Asn1Enumerated object by decoding data from an
79 /// input stream.
80 ///
81 /// </summary>
82 /// <param name="dec">The decoder object to use when decoding the
83 /// input stream. Sometimes a developer might want to pass
84 /// in his/her own decoder object
85 ///
86 /// </param>
87 /// <param name="in">A byte stream that contains the encoded ASN.1
88 ///
89 /// </param>
90 [CLSCompliantAttribute(false)]
91 public Asn1Enumerated(Asn1Decoder dec, System.IO.Stream in_Renamed, int len):base(ID, (System.Int64) dec.decodeNumeric(in_Renamed, len))
93 return ;
97 /// <summary> Call this method to encode the current instance into the
98 /// specified output stream using the specified encoder object.
99 ///
100 /// </summary>
101 /// <param name="enc">Encoder object to use when encoding self.
102 ///
103 /// </param>
104 /// <param name="out">The output stream onto which the encoded byte
105 /// stream is written.
106 /// </param>
107 public override void encode(Asn1Encoder enc, System.IO.Stream out_Renamed)
109 enc.encode(this, out_Renamed);
110 return ;
113 /// <summary> Return a String representation of this Asn1Enumerated.</summary>
114 public override System.String ToString()
116 return base.ToString() + "ENUMERATED: " + longValue();