NanoXLSX.Reader
3.2.1
Loading...
Searching...
No Matches
Relationship.cs
1
/*
2
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3
* Copyright Raphael Stoeckli © 2026
4
* This library is licensed under the MIT License.
5
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
6
*/
7
8
using
System;
9
using
System.Diagnostics.CodeAnalysis;
10
11
namespace
NanoXLSX.Internal.Readers
12
{
13
// TODO V4 (next major version): remove
17
[Obsolete(
"Will be removed with next major version"
)]
18
public
class
Relationship
19
{
23
[ExcludeFromCodeCoverage]
24
public
string
RID
{
get
;
set
; }
28
[ExcludeFromCodeCoverage]
29
public
string
Type
{
get
;
set
; }
33
[ExcludeFromCodeCoverage]
34
public
string
Target
{
get
;
set
; }
35
}
36
}
NanoXLSX.Internal.Readers.Relationship
Class to represent a workbook relation (do not use).
Definition
Relationship.cs:19
NanoXLSX.Internal.Readers.Relationship.Type
string Type
Type of the relation.
Definition
Relationship.cs:29
NanoXLSX.Internal.Readers.Relationship.Target
string Target
Target of the relation.
Definition
Relationship.cs:34
NanoXLSX.Internal.Readers.Relationship.RID
string RID
ID of the relation.
Definition
Relationship.cs:24
NanoXLSX.Internal.Readers
Definition
DiscoveryReader.cs:22
Internal
Structures
Relationship.cs
Generated by
1.15.0