Opc.Ua.ReferenceDescription.ToString C# (CSharp) Method

ToString() public method

Returns the string representation of the object.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return ToString(null, null);
        }
        #endregion

Same methods

ReferenceDescription::ToString ( string format, IFormatProvider formatProvider ) : string

Usage Example

コード例 #1
0
 public PropertyWithHistory(ReferenceDescription reference, byte accessLevel)
 {
     DisplayText = reference.ToString();
     NodeId = (NodeId)reference.NodeId;
     BrowseName = reference.BrowseName;
     AccessLevel = accessLevel;
 }