Meetings class

Enables you to create and manage Meeting Workspace sites.

Inheritance hierarchy

System.Object
  System.MarshalByRefObject
    System.ComponentModel.Component
      System.Web.Services.Protocols.WebClientProtocol
        System.Web.Services.Protocols.HttpWebClientProtocol
          System.Web.Services.Protocols.SoapHttpClientProtocol
            WebSvcMeetings.Meetings

Namespace:  WebSvcMeetings
Assembly:  STSSOAP (in STSSOAP.dll)

Syntax

'Declaration
<WebServiceBindingAttribute(Name := "MeetingsSoap", Namespace := "https://schemas.microsoft.com/sharepoint/soap/meetings/")> _
Public Class Meetings _
    Inherits SoapHttpClientProtocol
'Usage
Dim instance As Meetings
[WebServiceBindingAttribute(Name = "MeetingsSoap", Namespace = "https://schemas.microsoft.com/sharepoint/soap/meetings/")]
public class Meetings : SoapHttpClientProtocol

Remarks

To access the Meetings service and its methods, set a Web reference to https://Server_Name/[sites/][Site_Name/]_vti_bin/Meetings.asmx.

Examples

The following code example shows how to initialize a new instance of the Meetings service and authenticate the user to the server by using the credentials of the current user.

Dim ws As New mywss001.Meetings()
Dim myCache As New System.Net.CredentialCache()
ws.Credentials = myCache.DefaultCredentials
mywss001.Meetings ws = new mywss001.Meetings();
System.Net.CredentialCache myCache = new System.Net.CredentialCache();
ws.Credentials = myCache.DefaultCredentials;

Thread safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See also

Reference

Meetings members

WebSvcMeetings namespace