WebRTC_Sample.SessionForm.GetOfferResponse C# (CSharp) Method

GetOfferResponse() public method

public GetOfferResponse ( string offer ) : WebRTCCommons.CustomAwaiter
offer string
return WebRTCCommons.CustomAwaiter
        public WebRTCCommons.CustomAwaiter<byte[]> GetOfferResponse(string offer)
        {
            WebRTCCommons.CustomAwaiter<byte[]> retVal = new WebRTCCommons.CustomAwaiter<byte[]>();
            GetOfferResponseAsync(retVal, offer);           
            return (retVal);
        }