summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/Messaging/ChannelEventArgs.cs
blob: 18c1d3ab7a854d0f2fcdca8932e0ec8d3d871fea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DotNetOAuth.Messaging {
	public class ChannelEventArgs : EventArgs {
		internal ChannelEventArgs(IProtocolMessage message) {
			if (message == null) throw new ArgumentNullException("message");

			this.Message = message;
		}

		public IProtocolMessage Message { get; private set; }
	}
}