Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XPathNodePageInfo.cs
Go to the documentation of this file.
1
namespace
MS.Internal.Xml.Cache
;
2
3
internal
sealed
class
XPathNodePageInfo
4
{
5
private
readonly
int
_pageNum
;
6
7
private
int
_nodeCount
;
8
9
private
readonly
XPathNode
[]
_pagePrev
;
10
11
private
XPathNode
[]
_pageNext
;
12
13
public
int
PageNumber
=>
_pageNum
;
14
15
public
int
NodeCount
16
{
17
get
18
{
19
return
_nodeCount
;
20
}
21
set
22
{
23
_nodeCount
= value;
24
}
25
}
26
27
public
XPathNode
[]
PreviousPage
=>
_pagePrev
;
28
29
public
XPathNode
[]
NextPage
30
{
31
get
32
{
33
return
_pageNext
;
34
}
35
set
36
{
37
_pageNext
= value;
38
}
39
}
40
41
public
XPathNodePageInfo
(
XPathNode
[] pagePrev,
int
pageNum)
42
{
43
_pagePrev
= pagePrev;
44
_pageNum
= pageNum;
45
_nodeCount
= 1;
46
}
47
}
MS.Internal.Xml.Cache.XPathNodePageInfo.NodeCount
int NodeCount
Definition
XPathNodePageInfo.cs:16
MS.Internal.Xml.Cache.XPathNodePageInfo._nodeCount
int _nodeCount
Definition
XPathNodePageInfo.cs:7
MS.Internal.Xml.Cache.XPathNodePageInfo._pagePrev
readonly XPathNode[] _pagePrev
Definition
XPathNodePageInfo.cs:9
MS.Internal.Xml.Cache.XPathNodePageInfo.PreviousPage
XPathNode[] PreviousPage
Definition
XPathNodePageInfo.cs:27
MS.Internal.Xml.Cache.XPathNodePageInfo.NextPage
XPathNode[] NextPage
Definition
XPathNodePageInfo.cs:30
MS.Internal.Xml.Cache.XPathNodePageInfo._pageNum
readonly int _pageNum
Definition
XPathNodePageInfo.cs:5
MS.Internal.Xml.Cache.XPathNodePageInfo.PageNumber
int PageNumber
Definition
XPathNodePageInfo.cs:13
MS.Internal.Xml.Cache.XPathNodePageInfo._pageNext
XPathNode[] _pageNext
Definition
XPathNodePageInfo.cs:11
MS.Internal.Xml.Cache.XPathNodePageInfo.XPathNodePageInfo
XPathNodePageInfo(XPathNode[] pagePrev, int pageNum)
Definition
XPathNodePageInfo.cs:41
MS.Internal.Xml.Cache.XPathNodePageInfo
Definition
XPathNodePageInfo.cs:4
MS.Internal.Xml.Cache
Definition
TextBlockType.cs:1
MS.Internal.Xml.Cache.XPathNode
Definition
XPathNode.cs:6
source
System.Private.Xml
MS.Internal.Xml.Cache
XPathNodePageInfo.cs
Generated by
1.10.0