PoshKentico.Business.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>PoshKentico.Business</name>
    </assembly>
    <members>
        <member name="T:PoshKentico.Business.CmdletBusinessBase">
            <summary>
            Base class for all Cmdlet Business objects.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.CmdletBusinessBase.WriteDebug">
            <summary>
            Gets or sets a delegate for writing to the debug stream.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.CmdletBusinessBase.WriteVerbose">
            <summary>
            Gets or sets a delegate for writing to the verbose stream.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.CmdletBusinessBase.ShouldProcess">
            <summary>
            Gets or sets a delegate for checking if the cmdlet should continue processing.
            </summary>
        </member>
        <member name="T:PoshKentico.Business.Development.GetCMSWebPartCategoryBusiness">
            <summary>
            Business layer for the Get-CMSWebPartCategory cmdlet.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.Development.GetCMSWebPartCategoryBusiness.CmsApplicationService">
            <summary>
            Gets or sets a reference to the CMS Application Service. Populated by MEF.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.Development.GetCMSWebPartCategoryBusiness.WebPartService">
            <summary>
            Gets or sets a reference to the WebPart Service. Populated by MEF.
            </summary>
        </member>
        <member name="M:PoshKentico.Business.Development.GetCMSWebPartCategoryBusiness.GetWebPartCategories">
            <summary>
            Gets a list of all of the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/>.
            </summary>
            <returns>A list of all of the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/>.</returns>
        </member>
        <member name="M:PoshKentico.Business.Development.GetCMSWebPartCategoryBusiness.GetWebPartCategories(System.String,System.Boolean)">
            <summary>
            Gets a list of all of the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/> which match the specified criteria.
            </summary>
            <param name="matchString">The string which to match the webparts to.</param>
            <param name="exact">A boolean which indicates if the match should be exact.</param>
            <returns>A list of all of the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/> which match the specified criteria.</returns>
        </member>
        <member name="M:PoshKentico.Business.Development.GetCMSWebPartCategoryBusiness.GetWebPartCategories(System.Int32[])">
            <summary>
            Gets a list of the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/> which match the supplied IDs.
            </summary>
            <param name="ids">The IDs of the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/> to return.</param>
            <returns>A list of the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/> which match the supplied IDs.</returns>
        </member>
        <member name="T:PoshKentico.Business.Development.NewCMSWebPartCategoryBusiness">
            <summary>
            Business layer for the New-CMSWebPartCategory cmdlet.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.Development.NewCMSWebPartCategoryBusiness.CmsApplicationService">
            <summary>
            Gets or sets a reference to the CMS Application Service. Populated by MEF.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.Development.NewCMSWebPartCategoryBusiness.WebPartService">
            <summary>
            Gets or sets a reference to the WebPart Service. Populated by MEF.
            </summary>
        </member>
        <member name="M:PoshKentico.Business.Development.NewCMSWebPartCategoryBusiness.CreateWebPart(System.String,System.String,System.String)">
            <summary>
            Creates a new WebPartCategory in the CMS System.
            </summary>
            <param name="path">The path for the new WebPartCategory.</param>
            <param name="displayName">The display name for the WebPartCategory.</param>
            <param name="imagePath">The image path for the new WebPartCategory.</param>
            <returns>The newly created WebPartCategory.</returns>
        </member>
        <member name="T:PoshKentico.Business.Development.RemoveCMSWebPartCategoryBusiness">
            <summary>
            Business layer for the Remove-CMSWebPartCategory cmdlet.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.Development.RemoveCMSWebPartCategoryBusiness.CmsApplicationService">
            <summary>
            Gets or sets a reference to the CMS Application Service. Populated by MEF.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.Development.RemoveCMSWebPartCategoryBusiness.WebPartService">
            <summary>
            Gets or sets a reference to the WebPart Service. Populated by MEF.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.Development.RemoveCMSWebPartCategoryBusiness.GetCMSWebPartCategoryBusiness">
            <summary>
            Gets or sets a reference to the <see cref="P:PoshKentico.Business.Development.RemoveCMSWebPartCategoryBusiness.GetCMSWebPartCategoryBusiness"/> used to get the WebPartCategories to delete. Populated by MEF.
            </summary>
        </member>
        <member name="M:PoshKentico.Business.Development.RemoveCMSWebPartCategoryBusiness.RemoveWebPartCategories(System.String,System.Boolean)">
            <summary>
            Deletes all of the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/> which match the specified criteria.
            </summary>
            <param name="matchString">The string which to match the webparts to.</param>
            <param name="exact">A boolean which indicates if the match should be exact.</param>
        </member>
        <member name="M:PoshKentico.Business.Development.RemoveCMSWebPartCategoryBusiness.RemoveWebPartCategories(System.Int32[])">
            <summary>
            Deletes all of the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/> which match the supplied IDs.
            </summary>
            <param name="ids">The IDs of the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/> to delete.</param>
        </member>
        <member name="M:PoshKentico.Business.Development.RemoveCMSWebPartCategoryBusiness.RemoveWebPartCategory(PoshKentico.Core.Services.Development.IWebPartCategory)">
            <summary>
            Deletes the specified <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/>.
            </summary>
            <param name="webPartCategory">The webpart category to delete.</param>
        </member>
        <member name="T:PoshKentico.Business.Development.SetCMSWebPartCategoryBusiness">
            <summary>
            Business layer for the Set-CMSWebPartCategory cmdlet.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.Development.SetCMSWebPartCategoryBusiness.CmsApplicationService">
            <summary>
            Gets or sets a reference to the CMS Application Service. Populated by MEF.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.Development.SetCMSWebPartCategoryBusiness.WebPartService">
            <summary>
            Gets or sets a reference to the WebPart Service. Populated by MEF.
            </summary>
        </member>
        <member name="M:PoshKentico.Business.Development.SetCMSWebPartCategoryBusiness.Set(PoshKentico.Core.Services.Development.IWebPartCategory)">
            <summary>
            Sets the <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/> within Kentico.
            </summary>
            <param name="webPartCategory">The <see cref="T:PoshKentico.Core.Services.Development.IWebPartCategory"/> to set.</param>
        </member>
        <member name="T:PoshKentico.Business.General.InitializeCMSApplicationBusiness">
            <summary>
            Business layer for the Initialize-CMSApplication cmdlet.
            </summary>
        </member>
        <member name="P:PoshKentico.Business.General.InitializeCMSApplicationBusiness.CmsApplicationService">
            <summary>
            Gets or sets a reference to the CMS Application Service. Populated by MEF.
            </summary>
        </member>
        <member name="M:PoshKentico.Business.General.InitializeCMSApplicationBusiness.Initialize(System.String,System.IO.DirectoryInfo)">
            <summary>
            Initializes Kentico with the specified connection string and web root.
            Matches with the "ConnectionString" parameter set name.
            </summary>
            <param name="connectionString">The connection string for the database connection.</param>
            <param name="webRoot">The root directory for the Kentico site.</param>
        </member>
        <member name="M:PoshKentico.Business.General.InitializeCMSApplicationBusiness.Initialize(System.Boolean)">
            <summary>
            Initializes Kentico by searching for a Kentico site.
            </summary>
            <param name="useCached">A boolean which indicates if initialization should use a previously cahced value if available.</param>
        </member>
        <member name="M:PoshKentico.Business.General.InitializeCMSApplicationBusiness.Initialize(System.String,System.String,System.Int32,System.IO.DirectoryInfo)">
            <summary>
            Initializes Kentico by using the provided information to generate a connection string.
            </summary>
            <param name="databaseServer">The server the Kentico database is located on.</param>
            <param name="database">The name of the Kentico database.</param>
            <param name="timeout">The timeout for connecting to the Kentico database.</param>
            <param name="webRoot">The root directory for the Kentico site.</param>
        </member>
    </members>
</doc>