Exemple #1
0
		public HandleResult Handle(ContextAdapter context)
		{
			var rlt = new HandleResult();
			try
			{
				Handle(context, rlt);
			}
			catch (Exception ex)
			{
				rlt.Error(ex);
			}
			return rlt;
		}