24 lines
721 B
C#
24 lines
721 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using Microsoft.Framework.Runtime;
|
|
|
|
namespace Microsoft.AspNet.HttpFeature
|
|
{
|
|
[AssemblyNeutral]
|
|
public interface IHttpRequestFeature
|
|
{
|
|
string Protocol { get; set; }
|
|
string Scheme { get; set; }
|
|
string Method { get; set; }
|
|
string PathBase { get; set; }
|
|
string Path { get; set; }
|
|
string QueryString { get; set; }
|
|
IDictionary<string, string[]> Headers { get; set; }
|
|
Stream Body { get; set; }
|
|
}
|
|
}
|