You've already forked linux-packaging-mono
Imported Upstream version 5.10.0.47
Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
This commit is contained in:
parent
88ff76fe28
commit
e46a49ecf1
53
mcs/class/System.Data/corefx/SqlConnectionStringBuilder.cs
Normal file
53
mcs/class/System.Data/corefx/SqlConnectionStringBuilder.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
// Licensed to the .NET Foundation under one or more agreements.
|
||||
// The .NET Foundation licenses this file to you under the MIT license.
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Data;
|
||||
using System.Data.Common;
|
||||
|
||||
namespace System.Data.SqlClient
|
||||
{
|
||||
partial class SqlConnectionStringBuilder
|
||||
{
|
||||
[Obsolete("This property is ignored beginning in .NET Framework 4.5." +
|
||||
"For more information about SqlClient support for asynchronous programming, see" +
|
||||
"https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/asynchronous-programming")]
|
||||
public bool AsynchronousProcessing { get; set; }
|
||||
|
||||
[Obsolete("ConnectionReset has been deprecated. SqlConnection will ignore the 'connection reset'" +
|
||||
"keyword and always reset the connection")]
|
||||
public bool ConnectionReset { get; set; }
|
||||
|
||||
[MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
|
||||
public bool ContextConnection {
|
||||
get => throw new NotImplementedException();
|
||||
set => throw new NotImplementedException();
|
||||
}
|
||||
|
||||
[MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
|
||||
public string NetworkLibrary {
|
||||
get => throw new NotImplementedException();
|
||||
set => throw new NotImplementedException();
|
||||
}
|
||||
|
||||
[MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
|
||||
public PoolBlockingPeriod PoolBlockingPeriod {
|
||||
get => throw new NotImplementedException();
|
||||
set => throw new NotImplementedException();
|
||||
}
|
||||
|
||||
[MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
|
||||
public bool TransparentNetworkIPResolution {
|
||||
get => throw new NotImplementedException();
|
||||
set => throw new NotImplementedException();
|
||||
}
|
||||
|
||||
[MonoTODO("Not implemented in corefx: https://github.com/dotnet/corefx/issues/22474")]
|
||||
public SqlConnectionColumnEncryptionSetting ColumnEncryptionSetting {
|
||||
get => throw new NotImplementedException();
|
||||
set => throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user