System.Data.SQLite

Check-in [7273ee5d1f]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Remove superfluous comment.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 7273ee5d1fb7a88b4582401c91453d9babe5a13b
User & Date: mistachkin 2016-07-02 03:10:22.372
Context
2016-07-02
03:56
Update to MSVC 2015 Update 3 for x64. check-in: cfcbb396c0 user: mistachkin tags: trunk
03:10
Remove superfluous comment. check-in: 7273ee5d1f user: mistachkin tags: trunk
00:30
Move the XML configuration file reading code into its own private method. check-in: 5f0d62ce57 user: mistachkin tags: trunk
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/UnsafeNativeMethods.cs.
786
787
788
789
790
791
792
793

794
795
796
797
798
799
800
801
802
803
804
786
787
788
789
790
791
792

793




794
795
796
797
798
799
800







-
+
-
-
-
-







      /// Non-zero to expand any environment variable references contained in
      /// the setting value to be returned.  This has no effect on the .NET
      /// Compact Framework.
      /// </param>
      /// <returns>
      /// The value of the setting -OR- the default value specified by
      /// <paramref name="default" /> if it has not been set explicitly or
      /// cannot be determined.  By default, all references to existing
      /// cannot be determined.
      /// environment variables will be expanded to their corresponding values
      /// within the value to be returned unless either the "No_Expand" or
      /// "No_Expand_<paramref name="name" />" environment variable is set [to
      /// anything].
      /// </returns>
      private static string GetSettingValueViaXmlConfigFile(
          string fileName, /* in */
          string name,     /* in */
          string @default, /* in */
          bool expand      /* in */
          )