mirror of
https://github.com/opensim/opensim.git
synced 2026-05-18 13:35:35 +08:00
16 lines
429 B
C#
16 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Specialized;
|
|
|
|
namespace OpenSim.Framework.ServiceAuth
|
|
{
|
|
public delegate void AddHeaderDelegate(string key, string value);
|
|
|
|
public interface IServiceAuth
|
|
{
|
|
bool Authenticate(string data);
|
|
bool Authenticate(NameValueCollection headers, AddHeaderDelegate d);
|
|
void AddAuthorization(NameValueCollection headers);
|
|
}
|
|
}
|