Interface IResource
A resource is any asset which is loaded from a stream of data (could be from a file, or embedded in memory, or network stream, or any other stream).
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public interface IResource
Properties
| Improve this Doc View SourceID
A unique identifer for the resource.
Declaration
string ID { get; }
Property Value
Type | Description |
---|---|
System.String | The identifier. |
Stream
The stream of data associated with the resource.
Declaration
Stream Stream { get; }
Property Value
Type | Description |
---|---|
System.IO.Stream | The stream. |