Example #1
0
        private void Process_Version_Res()
        {
            ProtoOAVersionRes args = Serializer.Deserialize <ProtoOAVersionRes>(_processorMemoryStream);

            Log.Info("ProtoOAVersionRes:: " +
                     $"Version: {args.Version}");

            Send(Application_Auth_Req(_clientId, _clientSecret));

            OnVersionResReceived?.Invoke(args);
        }
Example #2
0
        private void OnVersionResponse(ProtoOAVersionRes e, string clientMsgId)
        {
            var streamMessage = new StreamMessage <ProtoOAVersionRes>(e, clientMsgId);

            _versionResponseStream.OnNext(streamMessage);
        }