//-----------------------------------------------------------------------
//
// Copyright (c) Outercurve Foundation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging {
///
/// The type of transport mechanism used for a message: either direct or indirect.
///
public enum MessageTransport {
///
/// A message that is sent directly from the Consumer to the Service Provider, or vice versa.
///
Direct,
///
/// A message that is sent from one party to another via a redirect in the user agent.
///
Indirect,
}
}