Compartilhar via


Método ConnectionSettings.ThrowIfPropertyNotSet (String, String, Boolean)

Lançará uma exceção se a propriedade de conexão especificada for nula ou, opcionalmente, vazia.

Namespace:  Microsoft.SqlServer.Management.Common
Assembly:  Microsoft.SqlServer.ConnectionInfo (em Microsoft.SqlServer.ConnectionInfo.dll)

Sintaxe

'Declaração
Protected Function ThrowIfPropertyNotSet ( _
    propertyName As String, _
    str As String, _
    checkEmpty As Boolean _
) As String
'Uso
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

Parâmetros

  • propertyName
    Tipo: String
    Uma cadeia de caracteres que especifica o nome da propriedade de conexão, como "Logon".
  • str
    Tipo: String
    Um objeto String que contém o valor da propriedade.
  • checkEmpty
    Tipo: Boolean
    True se você desejar verificar o valor da propriedade de uma cadeia de caracteres vazia ou um valor nulo; false se você desejar verificar somente um valor nulo.

Valor de retorno

Tipo: String
Se a propriedade não estiver definida, esse método lançará uma PropertyNotSetException.Caso contrário, esse método retornará o valor do parâmetro str.

Comentários

Se você desejar que a exceção seja lançada se o valor da propriedade for uma cadeia de caracteres vazia, defina o parâmetro checkEmpty como true.

Consulte também

Referência

ConnectionSettings Classe

Sobrecarregado ThrowIfPropertyNotSet

Namespace Microsoft.SqlServer.Management.Common