Inheritance: API.UserToUserRequest
Example #1
0
        internal RepeatedConnection InitRepeatedConnection(String username, String shortCode, String interactionId, String repeatId)
        {
            InitRepeatedConnectionRq request = new InitRepeatedConnectionRq() { repeatId = repeatId, username = username, shortCode = shortCode, interactionId = interactionId };
            try
            {
                InitRepeatedConnectionRs response =
                    GwupeClientAppContext.CurrentAppContext.ConnectionManager.Connection
                        .Request<InitRepeatedConnectionRq, InitRepeatedConnectionRs>(request);

            }
            catch (Exception e)
            {
                Logger.Error("Failed to get a repeated connection for repeateId [" + repeatId + "] to " + username, e);
            }
            return null;
        }