ConnectionSettings.ThrowIfPropertyNotSet 메서드 (String, String)
지정한 연결 속성이 Null이거나 비어 있으면 예외를 발생시킵니다.
네임스페이스: Microsoft.SqlServer.Management.Common
어셈블리: Microsoft.SqlServer.ConnectionInfo(Microsoft.SqlServer.ConnectionInfo.dll)
구문
‘선언
Protected Function ThrowIfPropertyNotSet ( _
propertyName As String, _
str As String _
) As String
‘사용 방법
Dim propertyName As String
Dim str As String
Dim returnValue As String
returnValue = Me.ThrowIfPropertyNotSet(propertyName, _
str)
protected string ThrowIfPropertyNotSet(
string propertyName,
string str
)
protected:
String^ ThrowIfPropertyNotSet(
String^ propertyName,
String^ str
)
member ThrowIfPropertyNotSet :
propertyName:string *
str:string -> string
protected function ThrowIfPropertyNotSet(
propertyName : String,
str : String
) : String
매개 변수
- propertyName
유형: String
연결 속성의 이름(예: "Login")을 지정하는 문자열입니다.
- str
유형: String
속성 값을 포함하는 String 개체입니다.
반환 값
유형: String
문자열이 Null이거나 비어 있을 경우 이 메서드는 PropertyNotSetException을 발생시킵니다.그렇지 않으면 이 메서드는 str 매개 변수 값을 반환합니다.