C# 클래스 Rock.Store.InstalledPackageService

Service class for the store category model.
상속: StoreServiceBase
파일 보기 프로젝트 열기: NewSpring/Rock

공개 메소드들

메소드 설명
GetInstalledPackages ( ) : List

Gets the installed packages.

InstalledPackageService ( ) : System

Initializes a new instance of the Rock.Model.CategoryService class.

InstalledPackageVersion ( int packageId ) : InstalledPackage

Returns the installed package version.

SaveInstall ( int packageId, string packageName, int versionId, string versionLabel, int vendorId, string vendorName, string installedBy ) : void

Logs that an install occurred.

비공개 메소드들

메소드 설명
SaveInstalledPackages ( List packages ) : void

메소드 상세

GetInstalledPackages() 공개 정적인 메소드

Gets the installed packages.
public static GetInstalledPackages ( ) : List
리턴 List

InstalledPackageService() 공개 메소드

Initializes a new instance of the Rock.Model.CategoryService class.
public InstalledPackageService ( ) : System
리턴 System

InstalledPackageVersion() 공개 정적인 메소드

Returns the installed package version.
public static InstalledPackageVersion ( int packageId ) : InstalledPackage
packageId int The package identifier.
리턴 InstalledPackage

SaveInstall() 공개 정적인 메소드

Logs that an install occurred.
public static SaveInstall ( int packageId, string packageName, int versionId, string versionLabel, int vendorId, string vendorName, string installedBy ) : void
packageId int The package identifier.
packageName string Name of the package.
versionId int The package version identifier.
versionLabel string The version label.
vendorId int The vendor identifier.
vendorName string Name of the vendor.
installedBy string The installed by.
리턴 void