internal RecordedBayeuxDataSourceUpdateEventArgs(RecordedBayeuxDataSource dataSource, IJSonObject request, IJSonMutableObject response)
        {
            if (dataSource == null)
                throw new ArgumentNullException("dataSource");

            DataSource = dataSource;
            Request = request;
            Response = response;
        }
Esempio n. 2
0
        internal RecordedBayeuxDataSourceUpdateEventArgs(RecordedBayeuxDataSource dataSource, IJSonObject request, IJSonMutableObject response)
        {
            if (dataSource == null)
            {
                throw new ArgumentNullException("dataSource");
            }

            DataSource = dataSource;
            Request    = request;
            Response   = response;
        }