예제 #1
0
 /// <summary>
 /// Creates a new <c>EnvironmentFile</c> with the specified name and the supplied data.
 /// This constructor is used when copying information out of a database.
 /// </summary>
 /// <param name="path">The full path for the file (not null)</param>
 /// <param name="edb">The data to use (might be data coming from a database)</param>
 public EnvironmentFile(string path, EnvironmentData edb)
     : base(edb)
 {
     this.Path = path;
 }
예제 #2
0
 /// <summary>
 /// Creates a new <c>EnvironmentData</c> that refers to the supplied data.
 /// </summary>
 /// <param name="data">The data to use</param>
 protected EnvironmentData(EnvironmentData data)
 {
     m_Data = data.m_Data;
 }
예제 #3
0
 /// <summary>
 /// Creates a new <c>EnvironmentData</c> that refers to the supplied data.
 /// </summary>
 /// <param name="data">The data to use</param>
 protected EnvironmentData(EnvironmentData data)
 {
     m_Data = data.m_Data;
 }
예제 #4
0
 /// <summary>
 /// Creates a new <c>EnvironmentFile</c> with the specified name and the supplied data.
 /// This constructor is used when copying information out of a database.
 /// </summary>
 /// <param name="path">The full path for the file (not null)</param>
 /// <param name="edb">The data to use (might be data coming from a database)</param>
 public EnvironmentFile(string path, EnvironmentData edb)
     : base(edb)
 {
     this.Path = path;
 }