コード例 #1
0
        /// <summary>
        /// Serializes the Value of the current instance
        /// </summary>
        /// <param name="writer">The writer to which to serialize</param>
        private void SerializeChildren(BinaryWriter writer)
        {
            if (this.Children == null)
            {
                writer.Write((byte)0);
            }
            else
            {
                writer.Write((byte)1);
                writer.Write(this.Children.Count);

                foreach (string name in this.Children.Keys)
                {
                    if (name == null)
                    {
                        writer.Write((byte)0);
                    }
                    else
                    {
                        writer.Write((byte)1);
                        writer.Write(name);
                    }
                    RecognizedSemanticValue child = this.Children[name];
                    if (child == null)
                    {
                        writer.Write((byte)0);
                    }
                    else
                    {
                        writer.Write((byte)1);
                        child.Serialize(writer);
                    }
                }
            }
        }
コード例 #2
0
        /// <summary>
        /// Deserializes the Children of the current instance
        /// </summary>
        /// <param name="reader">the reader from which to deserialize</param>
        private void DeserializeChildren(BinaryReader reader)
        {
            if (reader.ReadByte() != 0)
            {
                Children = new DssDictionary <string, RecognizedSemanticValue>();
                int count = reader.ReadInt32();

                for (int i = 0; i < count; i++)
                {
                    string name = null;
                    RecognizedSemanticValue child = null;
                    if (reader.ReadByte() != 0)
                    {
                        name = reader.ReadString();
                    }
                    if (reader.ReadByte() != 0)
                    {
                        child = new RecognizedSemanticValue();
                        child.Deserialize(reader);
                    }
                    Children[name] = child;
                }
            }
            else
            {
                Children = null;
            }
        }
コード例 #3
0
        /// <summary>
        /// Creates a clone of the current instance
        /// </summary>
        /// <returns>clone of the current instance (deeply cloned)</returns>
        public object Clone()
        {
            RecognizedSemanticValue clone = new RecognizedSemanticValue();

            CopyTo(clone);
            return(clone);
        }
コード例 #4
0
        /// <summary>
        /// Copys the values of the current instance to the target instance
        /// </summary>
        /// <param name="target">target instance</param>
        public void CopyTo(IDssSerializable target)
        {
            RecognizedSemanticValue clone = (RecognizedSemanticValue)target;

            clone.TypeOfValue = this.TypeOfValue;
            clone.Value       = this.Value;

            clone.KeyName    = this.KeyName;
            clone.Confidence = this.Confidence;

            if (Children != null)
            {
                clone.Children = new DssDictionary <string, RecognizedSemanticValue>();
                foreach (var child in Children)
                {
                    clone.Children[child.Key] = child.Value == null ? null : (RecognizedSemanticValue)child.Value.Clone();
                }
            }
            else
            {
                clone.Children = null;
            }
        }