EnumMatchingSPs 方法 (String, Boolean)
Enumerates a list of stored procedures that contain the specified string in the definition.
命名空間: Microsoft.SqlServer.Management.Smo
組件: Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)
語法
'宣告
Public Function EnumMatchingSPs ( _
description As String, _
includeSystem As Boolean _
) As UrnCollection
'用途
Dim instance As Database
Dim description As String
Dim includeSystem As Boolean
Dim returnValue As UrnCollection
returnValue = instance.EnumMatchingSPs(description, _
includeSystem)
public UrnCollection EnumMatchingSPs(
string description,
bool includeSystem
)
public:
UrnCollection^ EnumMatchingSPs(
String^ description,
bool includeSystem
)
member EnumMatchingSPs :
description:string *
includeSystem:bool -> UrnCollection
public function EnumMatchingSPs(
description : String,
includeSystem : boolean
) : UrnCollection
參數
- description
型別:System. . :: . .String
A String value that specifies the text to find a match for in the stored procedure definition.
- includeSystem
型別:System. . :: . .Boolean
A Boolean value that specifies whether to include system stored procedures in the returned list.
If True, system stored procedures are included. Otherwise, False.
傳回值
型別:Microsoft.SqlServer.Management.Smo. . :: . .UrnCollection
A UrnCollection object value that contains a list of matching stored procedures for the database.