Opc.Ua.XmlEncoder.WriteGuid C# (CSharp) Method

WriteGuid() public method

Writes a GUID to the stream.
public WriteGuid ( string fieldName, System.Guid value ) : void
fieldName string
value System.Guid
return void
        public void WriteGuid(string fieldName, Guid value)
        {
            if (BeginField(fieldName, false, false))
            {
                PushNamespace(Namespaces.OpcUaXsd);
                WriteString("String", value.ToString());
                PopNamespace();

                EndField(fieldName);
            }
        }
        

Same methods

XmlEncoder::WriteGuid ( string fieldName, Uuid value ) : void