Got at least one data fetching method working; turns out, we can't use a patched LogicStack to get the data
This commit is contained in:
19
Vendor/EmbedIO-3.5.2/IWebModuleContainer.cs
vendored
Normal file
19
Vendor/EmbedIO-3.5.2/IWebModuleContainer.cs
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using EmbedIO.Utilities;
|
||||
|
||||
namespace EmbedIO
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents an object that contains a collection of <see cref="IWebModule"/> interfaces.
|
||||
/// </summary>
|
||||
public interface IWebModuleContainer : IDisposable
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the modules.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The modules.
|
||||
/// </value>
|
||||
IComponentCollection<IWebModule> Modules { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user