Exemplo n.º 1
0
 public void ParsePropValue(byte[] buffer, ref int pos)
 {
     if (AttachPropList == null)
         AttachPropList = PropList.CreatePropertyList();
     PropList.AddProperty(buffer, ref pos, ref AttachPropList);
 }
Exemplo n.º 2
0
 public static void AddProperty(byte[] buffer, ref int pos, ref PropList PropertyList)
 {
     IPropValue propValue = StreamUtil.ParsePropValue(buffer, ref pos);
     PropertyList.PropValues.Add(propValue);
 }