次の方法で共有


ConnectionSettings.ThrowIfPropertyNotSet メソッド (String, String, Boolean)

指定された接続プロパティが NULL または空の場合に例外をスローします。

名前空間:  Microsoft.SqlServer.Management.Common
アセンブリ:  Microsoft.SqlServer.ConnectionInfo (Microsoft.SqlServer.ConnectionInfo.dll)

構文

'宣言
Protected Function ThrowIfPropertyNotSet ( _
    propertyName As String, _
    str As String, _
    checkEmpty As Boolean _
) As String
'使用
Dim propertyName As String 
Dim str As String 
Dim checkEmpty As Boolean 
Dim returnValue As String 

returnValue = Me.ThrowIfPropertyNotSet(propertyName, _
    str, checkEmpty)
protected string ThrowIfPropertyNotSet(
    string propertyName,
    string str,
    bool checkEmpty
)
protected:
String^ ThrowIfPropertyNotSet(
    String^ propertyName, 
    String^ str, 
    bool checkEmpty
)
member ThrowIfPropertyNotSet : 
        propertyName:string * 
        str:string * 
        checkEmpty:bool -> string
protected function ThrowIfPropertyNotSet(
    propertyName : String, 
    str : String, 
    checkEmpty : boolean
) : String

パラメーター

  • propertyName
    型: String
    "Login" など、接続プロパティの名前を示す文字列です。
  • str
    型: String
    プロパティ値を含む String オブジェクトです。
  • checkEmpty
    型: Boolean
    プロパティ値が NULL 値または空の文字列かどうかをチェックする場合は true、NULL 値かどうかだけをチェックする場合は false です。

戻り値

型: String
このプロパティが設定されていない場合、このメソッドは PropertyNotSetException をスローします。それ以外の場合は、str パラメーターの値を返します。

説明

プロパティ値が空の文字列である場合に例外がスローされるようにするには、checkEmpty パラメーターを true に設定します。

関連項目

参照

ConnectionSettings クラス

ThrowIfPropertyNotSet オーバーロード

Microsoft.SqlServer.Management.Common 名前空間