다음을 통해 공유


EnumMatchingSPs 메서드 (String, Boolean)

지정한 문자열이 정의에 포함된 저장 프로시저 목록을 열거합니다.

네임스페이스:  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
    저장 프로시저 정의에서 일치 항목을 찾을 텍스트를 지정하는 String 값입니다.
  • includeSystem
    유형: System. . :: . .Boolean
    반환되는 목록에 시스템 저장 프로시저를 포함할지 여부를 지정하는 Boolean 값입니다.
    True 이면 시스템 저장 프로시저가 포함됩니다. 그렇지 않으면 False입니다.

반환 값

유형: Microsoft.SqlServer.Management.Smo. . :: . .UrnCollection
데이터베이스에 대한 일치하는 저장 프로시저 목록을 포함하는 UrnCollection 개체 값입니다.

주의

The stored procedure is defined in the TextBody property. It is the text in the TextBody property that is compared to the value in the description parameter.