Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Essam branch #9

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions .vs/VSWorkspaceState.json
@@ -0,0 +1,8 @@
{
"ExpandedNodes": [
"",
"\\Gurux.DLMS.Client.Example.Net"
],
"SelectedNode": "\\Gurux.DLMS.Client.Example.Net\\Settings.cs",
"PreviewInSolutionExplorer": false
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
10 changes: 9 additions & 1 deletion Development/Objects/GXDLMSObject.cs
Expand Up @@ -330,7 +330,15 @@ public string Description
get;
set;
}

/// <summary>
/// of DLMS object.
/// </summary>
[DefaultValue(null)]
public string Junk_Test
{
get;
set;
}
/// <summary>
/// object attribute collection.
/// </summary>
Expand Down
6 changes: 4 additions & 2 deletions Development/Objects/GXDLMSObjectCollection.cs
Expand Up @@ -462,8 +462,10 @@ public static void Load(Stream stream, GXDLMSObjectCollection objects)
}
else
{
(obj as IGXDLMSBase).Load(reader);
obj = null;
/*(obj as IGXDLMSBase).Load(reader);
obj = null;*/
reader.Read();

}
}
else
Expand Down
16 changes: 16 additions & 0 deletions Gurux.DLMS.Client.Example.Net/Credit.cs
@@ -0,0 +1,16 @@

namespace Gurux.DLMS.Client.Example.Net
{
public class Credit
{

public static object Reader(IEGReader eGReader)
{
object val = eGReader.Read_Object("0.0.19.10.0.255", 2);
return val;

}


}
}