blob: 114bdc7f0257c5beac1453c1854e9e30804c29b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
namespace DotNetOAuth {
public class IndirectMessage {
public WebHeaderCollection Headers { get; set; }
public byte[] Body { get; set; }
public HttpStatusCode Status { get; set; }
internal IProtocolMessage OriginalMessage { get; set; }
/// <summary>
/// Requires a current HttpContext.
/// </summary>
public void Send() {
throw new System.NotImplementedException();
}
}
}
|