Beispiel #1
0
        internal virtual GetMeetingResponse GetMeeting(GetMeetingRequest request)
        {
            var options = new InvokeOptions();

            options.RequestMarshaller    = GetMeetingRequestMarshaller.Instance;
            options.ResponseUnmarshaller = GetMeetingResponseUnmarshaller.Instance;

            return(Invoke <GetMeetingResponse>(request, options));
        }
Beispiel #2
0
        /// <summary>
        /// Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information
        /// about the Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using
        /// the Amazon Chime SDK</a> in the <i>Amazon Chime Developer Guide</i>.
        /// </summary>
        /// <param name="request">Container for the necessary parameters to execute the GetMeeting service method.</param>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
        ///
        /// <returns>The response from the GetMeeting service method, as returned by ChimeSDKMeetings.</returns>
        /// <exception cref="Amazon.ChimeSDKMeetings.Model.BadRequestException">
        /// The input parameters don't match the service's restrictions.
        /// </exception>
        /// <exception cref="Amazon.ChimeSDKMeetings.Model.ForbiddenException">
        /// The client is permanently forbidden from making the request.
        /// </exception>
        /// <exception cref="Amazon.ChimeSDKMeetings.Model.NotFoundException">
        /// One or more of the resources in the request does not exist in the system.
        /// </exception>
        /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting">REST API Reference for GetMeeting Operation</seealso>
        public virtual Task <GetMeetingResponse> GetMeetingAsync(GetMeetingRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var options = new InvokeOptions();

            options.RequestMarshaller    = GetMeetingRequestMarshaller.Instance;
            options.ResponseUnmarshaller = GetMeetingResponseUnmarshaller.Instance;

            return(InvokeAsync <GetMeetingResponse>(request, options, cancellationToken));
        }
Beispiel #3
0
        public void getMeetingByPhoneNumber(string PhoneNumber, Func <object, GetMeetingCompletedEventArgs, Void> functionToCall)
        {
            try
            {
                getMeetingMethodToCall = functionToCall;

                var client = new MeetingServiceClient(new BasicHttpBinding(),
                                                      new EndpointAddress(EndpointHelper.EndpointAddress));

                var request = new GetMeetingRequest
                {
                    PhoneNumber = PhoneNumber
                };

                client.GetMeetingCompleted += getMeetingByPhoneData;
                client.GetMeetingAsync(request);
            }
            catch
            {
                MessageHelper.showErrorMesage("GetMeetingID failed");
            }
        }