MessageCollectionBase.Contains 方法 (Int32, String)
Determines whether an object with the specified ID value and language exists in the message collection object.
命名空間: Microsoft.SqlServer.Management.Smo
組件: Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)
語法
'宣告
Public Function Contains ( _
id As Integer, _
language As String _
) As Boolean
'用途
Dim instance As MessageCollectionBase
Dim id As Integer
Dim language As String
Dim returnValue As Boolean
returnValue = instance.Contains(id, language)
public bool Contains(
int id,
string language
)
public:
bool Contains(
int id,
String^ language
)
member Contains :
id:int *
language:string -> bool
public function Contains(
id : int,
language : String
) : boolean
參數
- id
型別:System.Int32
An Int32 value that specifies the ID value of the MessageCollectionBase object.
- language
型別:System.String
A String value that specifies the language associated with the MessageCollectionBase object.
傳回值
型別:System.Boolean
A Boolean value that specifies whether the object with the ID value and language exists in the MessageCollectionBase object.If True, the MessageCollectionBase contains the specified object.If False, the MessageCollectionBase does not contain the specified object.