using System; using System.Collections.Generic; using System.Linq; using System.Text; using Nuclex.Networking.Gallery3.Requests; namespace Nuclex.Networking.Gallery3 { /// Provides access to the resouces for a gallery connection internal interface IGalleryConnection { /// /// Factory used to create requests for the gallery installation /// /// /// If this is null, the connection has been closed. /// IRequestFactory RequestFactory { get; } /// /// API key of the user the connection is impersonating /// string ApiKey { get; } } } // namespace Nuclex.Networking.Gallery3