File tree 1 file changed +6
-6
lines changed
src/ICSharpCode.SharpZipLib/Zip
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public interface ITaggedData
15
15
/// <summary>
16
16
/// Get the ID for this tagged data value.
17
17
/// </summary>
18
- short TagID { get ; }
18
+ ushort TagID { get ; }
19
19
20
20
/// <summary>
21
21
/// Set the contents of this instance from the data passed.
@@ -41,7 +41,7 @@ public class RawTaggedData : ITaggedData
41
41
/// Initialise a new instance.
42
42
/// </summary>
43
43
/// <param name="tag">The tag ID.</param>
44
- public RawTaggedData ( short tag )
44
+ public RawTaggedData ( ushort tag )
45
45
{
46
46
_tag = tag ;
47
47
}
@@ -51,7 +51,7 @@ public RawTaggedData(short tag)
51
51
/// <summary>
52
52
/// Get the ID for this tagged data value.
53
53
/// </summary>
54
- public short TagID
54
+ public ushort TagID
55
55
{
56
56
get { return _tag ; }
57
57
set { _tag = value ; }
@@ -100,7 +100,7 @@ public byte[] Data
100
100
/// <summary>
101
101
/// The tag ID for this instance.
102
102
/// </summary>
103
- private short _tag ;
103
+ private ushort _tag ;
104
104
105
105
private byte [ ] _data ;
106
106
@@ -139,7 +139,7 @@ public enum Flags : byte
139
139
/// <summary>
140
140
/// Get the ID
141
141
/// </summary>
142
- public short TagID
142
+ public ushort TagID
143
143
{
144
144
get { return 0x5455 ; }
145
145
}
@@ -328,7 +328,7 @@ public class NTTaggedData : ITaggedData
328
328
/// <summary>
329
329
/// Get the ID for this tagged data value.
330
330
/// </summary>
331
- public short TagID
331
+ public ushort TagID
332
332
{
333
333
get { return 10 ; }
334
334
}
You can’t perform that action at this time.
0 commit comments