Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add missing comments for the new attribute classes. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b434e4278d94c22e2ae25adee4e01db1 |
User & Date: | mistachkin 2013-09-18 08:11:56.068 |
Context
2013-09-18
| ||
08:14 | Fix a bug in NDoc3 that prevented external links from working correctly for the built-in return types and parameter types in the built CHM file. check-in: ce3e0bd842 user: mistachkin tags: trunk | |
08:11 | Add missing comments for the new attribute classes. check-in: b434e4278d user: mistachkin tags: trunk | |
02:31 | Simplify and cleanup authorizer tests. Update version history docs. check-in: 441ccabcc6 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/AssemblySourceIdAttribute.cs.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System; namespace System.Data.SQLite { [AttributeUsage(AttributeTargets.Assembly, Inherited = false)] public sealed class AssemblySourceIdAttribute : Attribute { public AssemblySourceIdAttribute(string value) { sourceId = value; } /////////////////////////////////////////////////////////////////////// private string sourceId; public string SourceId { get { return sourceId; } } } } | > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System; namespace System.Data.SQLite { /// <summary> /// Defines a source code identifier custom attribute for an assembly /// manifest. /// </summary> [AttributeUsage(AttributeTargets.Assembly, Inherited = false)] public sealed class AssemblySourceIdAttribute : Attribute { /// <summary> /// Constructs an instance of this attribute class using the specified /// source code identifier value. /// </summary> /// <param name="value"> /// The source code identifier value to use. /// </param> public AssemblySourceIdAttribute(string value) { sourceId = value; } /////////////////////////////////////////////////////////////////////// private string sourceId; /// <summary> /// Gets the source code identifier value. /// </summary> public string SourceId { get { return sourceId; } } } } |
Changes to System.Data.SQLite/AssemblySourceTimeStampAttribute.cs.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System; namespace System.Data.SQLite { [AttributeUsage(AttributeTargets.Assembly, Inherited = false)] public sealed class AssemblySourceTimeStampAttribute : Attribute { public AssemblySourceTimeStampAttribute(string value) { sourceTimeStamp = value; } /////////////////////////////////////////////////////////////////////// private string sourceTimeStamp; public string SourceTimeStamp { get { return sourceTimeStamp; } } } } | > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System; namespace System.Data.SQLite { /// <summary> /// Defines a source code time-stamp custom attribute for an assembly /// manifest. /// </summary> [AttributeUsage(AttributeTargets.Assembly, Inherited = false)] public sealed class AssemblySourceTimeStampAttribute : Attribute { /// <summary> /// Constructs an instance of this attribute class using the specified /// source code time-stamp value. /// </summary> /// <param name="value"> /// The source code time-stamp value to use. /// </param> public AssemblySourceTimeStampAttribute(string value) { sourceTimeStamp = value; } /////////////////////////////////////////////////////////////////////// private string sourceTimeStamp; /// <summary> /// Gets the source code time-stamp value. /// </summary> public string SourceTimeStamp { get { return sourceTimeStamp; } } } } |