-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathObject.cs
More file actions
190 lines (168 loc) · 4.75 KB
/
Object.cs
File metadata and controls
190 lines (168 loc) · 4.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
//
// Copyright 2010 Thaddeus L Ryker
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Dynamics Nav is a registered trademark of the Microsoft Corporation
//
using System;
namespace Org.Edgerunner.Dynamics.Nav.CSide
{
/// <summary>
/// Represents an object within Microsoft Dynamics Nav.
/// </summary>
public class Object : IDisposable
{
#region Non-Public Fields (1)
private Record _Record;
#endregion Non-Public Fields
#region Properties (9)
/// <summary>
/// Gets the Blob Size of the object.
/// </summary>
/// <value>The size of the BLOB.</value>
public int BlobSize
{
get
{
return int.Parse(_Record.FieldValues[8].Value);
}
}
/// <summary>
/// Gets a value indicating whether this <see cref="Object"/> is compiled.
/// </summary>
/// <value><c>true</c> if compiled; otherwise, <c>false</c>.</value>
public bool Compiled
{
get
{
return Int32.Parse(_Record.FieldValues[6].Value) == 1;
}
}
/// <summary>
/// Gets the ID.
/// </summary>
/// <value>The ID.</value>
public int ID
{
get
{
return int.Parse(_Record.FieldValues[3].Value);
}
}
/// <summary>
/// Gets a value indicating whether this <see cref="Org.Edgerunner.Dynamics.Nav.CSide.Object"/> is modified.
/// </summary>
/// <value><c>true</c> if modified; otherwise, <c>false</c>.</value>
public bool Modified
{
get
{
return Int32.Parse(_Record.FieldValues[5].Value) == 1;
}
}
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name
{
get
{
return _Record.FieldValues[4].Value;
}
}
/// <summary>
/// Gets the last modified time.
/// </summary>
/// <value>The last modified time.</value>
public DateTime LastModifiedTime
{
get
{
DateTime lmDate = DateTime.Parse(_Record.FieldValues[10].Value);
DateTime lmTime = DateTime.Parse(_Record.FieldValues[11].Value);
return new DateTime(lmDate.Year, lmDate.Month, lmDate.Day, lmTime.Hour, lmTime.Minute, lmTime.Second);
}
}
/// <summary>
/// Gets the type.
/// </summary>
/// <value>The type.</value>
public NavObjectType Type
{
get
{
return (NavObjectType)int.Parse(_Record.FieldValues[1].Value);
}
}
/// <summary>
/// Gets the version list.
/// </summary>
/// <value>The version list.</value>
public string VersionList
{
get
{
return _Record.FieldValues[12].Value;
}
}
public bool Locked
{
get
{
try
{
return (int.Parse(_Record.FieldValues[40].Value) == 1);
}
catch (System.Collections.Generic.KeyNotFoundException ex)
{
return false;
}
}
}
public string LockedBy
{
get
{
try
{
return _Record.FieldValues[50].Value;
}
catch (System.Collections.Generic.KeyNotFoundException ex)
{
return string.Empty;
}
}
}
#endregion Properties
#region Constructors/Deconstructors (1)
/// <summary>
/// Initializes a new instance of the Object class.
/// </summary>
/// <param name="record"></param>
internal Object(Record record)
{
_Record = record;
}
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
_Record.Dispose();
GC.SuppressFinalize(this);
}
#endregion
}
}