Example #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="manifestToken">A token used to infer the capabilities of the store</param>
 public SqlProviderManifest(string manifestToken)
     : base(SqlProviderManifest.GetProviderManifest())
 {
     // GetSqlVersion will throw ArgumentException if manifestToken is null, empty, or not recognized.
     _version = SqlVersionUtils.GetSqlVersion(manifestToken);
 }