Class SpacesService.SpacesServiceBase
Base class for server-side implementations of SpacesService
Namespace: Google.Apps.Meet.V2Beta
Assembly: Google.Apps.Meet.V2Beta.dll
Syntax
[BindServiceMethod(typeof(SpacesService), "BindService")]
public abstract class SpacesService.SpacesServiceBase
Methods
ConnectActiveConference(ConnectActiveConferenceRequest, ServerCallContext)
Developer Preview: Broker a WebRTC connection to the active conference of a space.
On success, clients must use the resulting SDP (Session Description Protocol) answer to establish a WebRTC connection. Once connected, additional functionality is available across WebRTC data channels.
See Meet Media API overview for more details about this connection.
Declaration
public virtual Task<ConnectActiveConferenceResponse> ConnectActiveConference(ConnectActiveConferenceRequest request, ServerCallContext context)
Parameters
Type | Name | Description |
---|---|---|
Connect |
request | The request received from the client. |
Server |
context | The context of the server-side call handler being invoked. |
Returns
Type | Description |
---|---|
Task<Connect |
The response to send back to the client (wrapped by a task). |
CreateMember(CreateMemberRequest, ServerCallContext)
Developer Preview: Create a member.
This API supports the fields
parameter in
SystemParameterContext.
When the fields
parameter is omitted, this API response will default to
"name,email,role,user".
Declaration
public virtual Task<Member> CreateMember(CreateMemberRequest request, ServerCallContext context)
Parameters
Type | Name | Description |
---|---|---|
Create |
request | The request received from the client. |
Server |
context | The context of the server-side call handler being invoked. |
Returns
CreateSpace(CreateSpaceRequest, ServerCallContext)
Creates a space.
Declaration
public virtual Task<Space> CreateSpace(CreateSpaceRequest request, ServerCallContext context)
Parameters
Type | Name | Description |
---|---|---|
Create |
request | The request received from the client. |
Server |
context | The context of the server-side call handler being invoked. |
Returns
DeleteMember(DeleteMemberRequest, ServerCallContext)
Developer Preview: Delete the member who was previously assigned roles in the space.
Declaration
public virtual Task<Empty> DeleteMember(DeleteMemberRequest request, ServerCallContext context)
Parameters
Type | Name | Description |
---|---|---|
Delete |
request | The request received from the client. |
Server |
context | The context of the server-side call handler being invoked. |
Returns
EndActiveConference(EndActiveConferenceRequest, ServerCallContext)
Ends an active conference (if there's one).
For an example, see End active conference.
Declaration
public virtual Task<Empty> EndActiveConference(EndActiveConferenceRequest request, ServerCallContext context)
Parameters
Type | Name | Description |
---|---|---|
End |
request | The request received from the client. |
Server |
context | The context of the server-side call handler being invoked. |
Returns
GetMember(GetMemberRequest, ServerCallContext)
Developer Preview: Get a member.
This API supports the fields
parameter in
SystemParameterContext.
When the fields
parameter is omitted, this API response will default to
"name,email,role,user".
Declaration
public virtual Task<Member> GetMember(GetMemberRequest request, ServerCallContext context)
Parameters
Type | Name | Description |
---|---|---|
Get |
request | The request received from the client. |
Server |
context | The context of the server-side call handler being invoked. |
Returns
GetSpace(GetSpaceRequest, ServerCallContext)
Gets details about a meeting space.
For an example, see Get a meeting space.
Declaration
public virtual Task<Space> GetSpace(GetSpaceRequest request, ServerCallContext context)
Parameters
Type | Name | Description |
---|---|---|
Get |
request | The request received from the client. |
Server |
context | The context of the server-side call handler being invoked. |
Returns
ListMembers(ListMembersRequest, ServerCallContext)
Developer Preview: List members.
This API supports the fields
parameter in
SystemParameterContext.
When the fields
parameter is omitted this API response will default to
"name,email,role,user".
Declaration
public virtual Task<ListMembersResponse> ListMembers(ListMembersRequest request, ServerCallContext context)
Parameters
Type | Name | Description |
---|---|---|
List |
request | The request received from the client. |
Server |
context | The context of the server-side call handler being invoked. |
Returns
Type | Description |
---|---|
Task<List |
The response to send back to the client (wrapped by a task). |
UpdateSpace(UpdateSpaceRequest, ServerCallContext)
Updates details about a meeting space.
For an example, see Update a meeting space.
Declaration
public virtual Task<Space> UpdateSpace(UpdateSpaceRequest request, ServerCallContext context)
Parameters
Type | Name | Description |
---|---|---|
Update |
request | The request received from the client. |
Server |
context | The context of the server-side call handler being invoked. |