Share via


(String, String, String, UInt32, String, String, String, String, String, String, String) del método SPSite.SelfServiceCreateSite

Creates a site collection by using Self-Service Site Creation.

Espacio de nombres:  Microsoft.SharePoint
Ensamblado:  Microsoft.SharePoint (en Microsoft.SharePoint.dll)

Sintaxis

'Declaración
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 _
) 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 returnValue As SPSite

returnValue = instance.SelfServiceCreateSite(siteUrl, _
    title, description, nLCID, webTemplate, _
    ownerLogin, ownerName, ownerEmail, _
    contactLogin, contactName, contactEmail)
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
)

Parámetros

  • siteUrl
    Tipo: System.String

    A string that contains the absolute URL for the site collection.

  • title
    Tipo: System.String

    A string that contains the title for the site collection.

  • description
    Tipo: System.String

    A string that contains the description for the site collection.

  • nLCID
    Tipo: System.UInt32

    An unsigned 32-bit integer that specifies the locale identifier (LCID).

  • webTemplate
    Tipo: System.String

    A string that contains the name of the site definition to use to create the site collection.

  • ownerLogin
    Tipo: System.String

    A string that contains the user name for the site collection owner.

  • ownerName
    Tipo: System.String

    A string that contains the display name for the site collection owner.

  • ownerEmail
    Tipo: System.String

    A string that contains the e-mail address for the site collection owner.

  • contactLogin
    Tipo: System.String

    A string that contains the user name for the secondary contact.

  • contactName
    Tipo: System.String

    A string that contains the display name for the secondary contact.

  • contactEmail
    Tipo: System.String

    A string that contains the e-mail address for the secondary contact.

Valor devuelto

Tipo: Microsoft.SharePoint.SPSite
An SPSite object that represents the new site collection.

Comentarios

The SelfServiceCreateSite method throws an exception of type ArgumentException if the value passed for the strSiteUrl parameter does not specify an absolute URL. If this method is called when Self-Service Site Creation is disabled on the server, an exception of type SPException is thrown.

Ejemplos

The following code example uses the SelfServiceCreateSite method to create a new site collection based on the STS site template.

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();
}

Nota

Certain objects implement the IDisposable interface, and you must avoid retaining these objects in memory after they are no longer needed. For information about good coding practices, see Disposing Objects.

Vea también

Referencia

clase SPSite

Miembros SPSite

Sobrecarga SelfServiceCreateSite

Espacio de nombres Microsoft.SharePoint