SPSite.SelfServiceCreateSite method (String, String, String, UInt32, String, String, String, String, String, String, String, String)
Creates a site collection by using Self-Service Site Creation based on the specified quota template and other information.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaração
Public Function SelfServiceCreateSite ( _
siteUrl As String, _
title As String, _
description As String, _
nLCID As UInteger, _
webTemplate As String, _
ownerLogin As String, _
ownerName As String, _
ownerEmail As String, _
contactLogin As String, _
contactName As String, _
contactEmail As String, _
quotaTemplate As String _
) As SPSite
'Uso
Dim instance As SPSite
Dim siteUrl As String
Dim title As String
Dim description As String
Dim nLCID As UInteger
Dim webTemplate As String
Dim ownerLogin As String
Dim ownerName As String
Dim ownerEmail As String
Dim contactLogin As String
Dim contactName As String
Dim contactEmail As String
Dim quotaTemplate As String
Dim returnValue As SPSite
returnValue = instance.SelfServiceCreateSite(siteUrl, _
title, description, nLCID, webTemplate, _
ownerLogin, ownerName, ownerEmail, _
contactLogin, contactName, contactEmail, _
quotaTemplate)
public SPSite SelfServiceCreateSite(
string siteUrl,
string title,
string description,
uint nLCID,
string webTemplate,
string ownerLogin,
string ownerName,
string ownerEmail,
string contactLogin,
string contactName,
string contactEmail,
string quotaTemplate
)
Parâmetros
siteUrl
Type: System.StringA string that contains the absolute URL for the site collection.
title
Type: System.StringA string that contains the title for the site collection.
description
Type: System.StringA string that contains the description for the site collection.
nLCID
Type: System.UInt32An unsigned 32-bit integer that specifies the locale ID.
webTemplate
Type: System.StringA string that contains the name of the site definition to use to create the site collection.
ownerLogin
Type: System.StringA string that contains the user name for the site collection owner.
ownerName
Type: System.StringA string that contains the display name for the site collection owner.
ownerEmail
Type: System.StringA string that contains the e-mail address for the site collection owner.
contactLogin
Type: System.StringA string that contains the user name for the secondary contact.
contactName
Type: System.StringA string that contains the display name for the secondary contact.
contactEmail
Type: System.StringUma seqüência de caracteres que contém o endereço de email para o contato secundário.
quotaTemplate
Type: System.StringUma seqüência de caracteres que contém o nome do modelo de cota.
Valor retornado
Type: Microsoft.SharePoint.SPSite
Um objeto SPSite que representa o novo conjunto de sites.
Comentários
O método SelfServiceCreateSite lança uma exceção do tipo ArgumentException se o valor passado para o parâmetro strSiteUrl não especificar uma URL absoluta. Se esse método for chamado quando a criação de Site Pessoal está desabilitada no servidor, é lançada uma exceção do tipo SPException .
Examples
O exemplo de código a seguir usa o método SelfServiceCreateSite para criar um novo conjunto com base no modelo de site STS .
Using oSiteCollection As New SPSite("http://" + System.Environment.MachineName)
Dim oSiteCollectionSelfServ As SPSite = oSiteCollection.SelfServiceCreateSite("Absolute_URL", "Title", "Description", Locale_ID, "STS", "Owner_User_Name", "Owner_Display_Name", "Owner_E-mail", "Contact_User_Name", "Contact_Display_Name", "Contact_E-mail")
oSiteCollectionSelfServ.Dispose()
End Using
using(SPSite oSiteCollection = new SPSite("http://" + System.Environment.MachineName))
{
SPSite oSiteCollectionSelfServ = oSiteCollection.SelfServiceCreateSite("Absolute_URL", "Title",
"Description", Locale_ID, "STS", "Owner_User_Name",
"Owner_Display_Name", "Owner_E-mail",
"Contact_User_Name", "Contact_Display_Name", "Contact_E-mail");
oSiteCollectionSelfServ.Dispose();
}
Dica
Determinados objetos implementam a interface IDisposable , e você deve evitar reter esses objetos na memória depois que eles não são mais necessários. Para obter informações sobre boas práticas de codificação, consulte Disposing Objects.