C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ILayerView.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
4
5// ReSharper disable once CheckNamespace (Type is common enough to be on root namespace)
6namespace AnalyzeRe
7{
10 {
12 ILayer layer { get; set; }
13
15 [IgnoreDataMember, InternalMember]
16 Type LayerType { get; }
17 }
18}
PortfolioView and LayerView interface.
An interface for an object that provides access to some layer instance.
Represents the Analysis of a Layer.
ILayer layer
The layer contained in this LayerView.
Definition ILayerView.cs:12
Type LayerType
Returns the runtime type of layer this layer_view refers to.
Definition ILayerView.cs:16
Abstract representation of a layer.
Definition ILayer.cs:7