C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ILayerView[T].cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
3
4// ReSharper disable once CheckNamespace (Type is common enough to be on root namespace)
5namespace AnalyzeRe
6{
9 public interface ILayerView<out T> : ILayerView where T : ILayer
10 {
12 [DataMember(Order = 21)]
13 [NotNull]
14 new T layer { get; }
15 }
16}
Represents the Analysis of a Layer.
ILayer layer
The layer contained in this LayerView.
Definition ILayerView.cs:12
Abstract representation of a layer.
Definition ILayer.cs:7