共用方式為


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
    指定連接屬性名稱的字串,例如「登入」。
  • str
    型別:String
    包含屬性值的 String 物件。
  • checkEmpty
    型別:Boolean
    如果您要檢查屬性值是否為空字串或 Null 值,則為 True,如果只要檢查 Null 值,則為 false。

傳回值

型別:String
如果未設定此屬性,此方法會擲回 PropertyNotSetException。否則這個方法會傳回 str 參數值。

備註

如果您要擲回例外狀況,如果屬性值是空字串,請設定 checkEmpty 參數 TRUE。

請參閱

參考

ConnectionSettings 類別

ThrowIfPropertyNotSet 多載

Microsoft.SqlServer.Management.Common 命名空間