C# Class FdoToolbox.Base.Services.ConnectionRenameResult

A response to a connection rename attempt
ファイルを表示 Open project: jumpinjackie/fdotoolbox

Public Properties

Property Type Description
CanRename bool
Reason string

Public Methods

Method Description
ConnectionRenameResult ( ) : System

Initializes a new instance of the ConnectionRenameResult class.

ConnectionRenameResult ( bool result, string reason ) : System

Initializes a new instance of the ConnectionRenameResult class.

Method Details

ConnectionRenameResult() public method

Initializes a new instance of the ConnectionRenameResult class.
public ConnectionRenameResult ( ) : System
return System

ConnectionRenameResult() public method

Initializes a new instance of the ConnectionRenameResult class.
public ConnectionRenameResult ( bool result, string reason ) : System
result bool if set to true, specifies that the connection can be renamed.
reason string The reason.
return System

Property Details

CanRename public_oe property

Determines if the connection can be renamed
public bool CanRename
return bool

Reason public_oe property

The reason a connection cannot be renamed if CanRename is false
public string Reason
return string