ConnectionActiveState.SimilarConnection Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the connection is similar.
public:
property Microsoft::Web::Management::Client::ConnectionInfo ^ SimilarConnection { Microsoft::Web::Management::Client::ConnectionInfo ^ get(); };
public Microsoft.Web.Management.Client.ConnectionInfo SimilarConnection { get; }
member this.SimilarConnection : Microsoft.Web.Management.Client.ConnectionInfo
Public ReadOnly Property SimilarConnection As ConnectionInfo
Property Value
true
if the connection is similar; otherwise, false
.
Examples
void OpenConnection(IServiceProvider serviceProvider,
ConnectionInfo newConnectionInfo) {
if (newConnectionInfo != null) {
IConnectionManager connectionManager =
(IConnectionManager)
serviceProvider.GetService(
typeof(IConnectionManager)
);
if (connectionManager == null)
return;
using (new WaitCursor()) {
ConnectionActiveState activeState =
connectionManager.GetConnectionActiveState(
newConnectionInfo);
if (activeState.DifferentCredentials) {
ShowMessage("ConnectionAlreadyExists",
MessageBoxButtons.OK,
MessageBoxIcon.Information);
newConnectionInfo =
activeState.SimilarConnection;
}
MyActivateConnectionInfo(
connectionManager,
newConnectionInfo
);
}
}
}