You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
741 B
C#
33 lines
741 B
C#
/*
|
|
* Copyright 2013-2025 Michael Zillgith, MZ Automation GmbH
|
|
*
|
|
* This file is part of MZ Automation IEC 61850 SDK
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
using System.Xml;
|
|
|
|
namespace IEC61850.SCL
|
|
{
|
|
public class SclPrivate : SclBaseElement
|
|
{
|
|
internal SclPrivate(XmlDocument xmlDocument, SclDocument sclDocument, XmlNode xmlNode)
|
|
: base(xmlDocument, sclDocument, xmlNode)
|
|
{
|
|
}
|
|
|
|
public string Type
|
|
{
|
|
get
|
|
{
|
|
return XmlHelper.GetAttributeValue(xmlNode, "type");
|
|
}
|
|
set
|
|
{
|
|
XmlHelper.SetAttributeCreateIfNotExists(sclDocument.XmlDocument, xmlNode, "type", value);
|
|
}
|
|
}
|
|
}
|
|
}
|