示例#1
0
 /// <summary>
 /// Loads the byte representation of the workspace unit data.
 /// </summary>
 /// <param name="unitname">The unitname.</param>
 /// <returns>
 /// The full byte representation of the workspace unit data
 /// </returns>
 public byte[] LoadBytes(string unitname)
 {
     return m_workspace.LoadBytes(unitname);
 }
示例#2
0
 /// <summary>
 /// Loads the byte representation of the workspace unit data.
 /// </summary>
 /// <param name="unitname">The unitname.</param>
 /// <returns>
 /// The full byte representation of the workspace unit data
 /// </returns>
 public virtual byte[] LoadBytes(string unitname)
 {
     return(m_parentWorkspace.LoadBytes(GetFullNamespacePath(unitname)));
 }