blob: 4097cba0ed5737782c3a191a5d4df0b95a9b0741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DotNetOAuth {
/// <summary>
/// The type of transport mechanism used for a message: either direct or indirect.
/// </summary>
public enum MessageTransport {
/// <summary>
/// A message that is sent directly from the Consumer to the Service Provider, or vice versa.
/// </summary>
Direct,
/// <summary>
/// A message that is sent from one party to another via a redirect in the user agent.
/// </summary>
Indirect,
}
}
|