Share via


Meetings.SetWorkspaceTitle - Méthode

Définit le titre du site espace de travail de réunion sur le serveur spécifié exécutant Windows SharePoint Services.

Espace de noms :  WebSvcMeetings
Assembly :  STSSOAP (dans STSSOAP.dll)

Syntaxe

'Déclaration
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/meetings/SetWorkspaceTitle", RequestNamespace := "https://schemas.microsoft.com/sharepoint/soap/meetings/",  _
    ResponseNamespace := "https://schemas.microsoft.com/sharepoint/soap/meetings/",  _
    Use := SoapBindingUse.Literal, ParameterStyle := SoapParameterStyle.Wrapped)> _
Public Sub SetWorkspaceTitle ( _
    title As String _
)
'Utilisation
Dim instance As Meetings
Dim title As String

instance.SetWorkspaceTitle(title)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/meetings/SetWorkspaceTitle", RequestNamespace = "https://schemas.microsoft.com/sharepoint/soap/meetings/", 
    ResponseNamespace = "https://schemas.microsoft.com/sharepoint/soap/meetings/", 
    Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)]
public void SetWorkspaceTitle(
    string title
)

Paramètres

  • title
    Type : System.String

    Le titre du site espace de travail spécifié. Si le titre dépasse 255 caractères, il est tronqué pour les 255 premiers caractères.

Remarques

La méthode SetWorkspaceTitle retourne une réponse SOAP, mais comme un retour de fonction void, il n'a pas de données retour à analyser. Cette méthode fonctionne uniquement avec les sites espace de travail de réunion.

Pour accéder à ses méthodes et le service Meetings , définissez une référence Web à https://Server_Name/ [sites /] [Site_Name/] _vti_bin/Meetings.asmx.

Exemples

Format de la demande SOAP   Voici un exemple de demande SOAP. Remplacez les espaces réservés illustrés par des valeurs réelles.

POST /_vti_bin/meetings.asmx HTTP/1.1

Host: server_name

Content-Type: text/xml; charset=utf-8

Content-Length: length

SOAPAction: "https://schemas.microsoft.com/sharepoint/soap/

meetings/SetWorkspaceTitle"

<?xml version="1.0" encoding="utf-8"?>

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xmlns:xsd="http://www.w3.org/2001/XMLSchema"

xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">

<soap:Body>

<SetWorkspaceTitle xmlns=

"https://schemas.microsoft.com/sharepoint/soap/meetings/">

<title>string</title>

</SetWorkspaceTitle>

</soap:Body>

</soap:Envelope>

Format de la réponse SOAP   Voici un exemple de réponse SOAP. Remplacez les espaces réservés avec les valeurs de retour réelles.

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
    xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SetWorkspaceTitleResponse xmlns=
        "https://schemas.microsoft.com/sharepoint/soap/meetings/" />
  </soap:Body>
</soap:Envelope>

Voir aussi

Référence

Meetings classe

Meetings - Membres

WebSvcMeetings - Espace de noms