Beispiel #1
0
 /// <summary>
 /// Creates a child asset that is inheriting the values of this asset.
 /// </summary>
 /// <returns>A new asset inheriting the values of this asset.</returns>
 public Asset CreateDerivedAsset()
 {
     return(Asset.CreateDerivedAsset(Location));
 }
Beispiel #2
0
        /// <summary>
        /// Creates a child asset that is inheriting the values of this asset.
        /// </summary>
        /// <returns>A new asset inheriting the values of this asset.</returns>
        public Asset CreateDerivedAsset()
        {
            Dictionary <Guid, Guid> idRemapping;

            return(Asset.CreateDerivedAsset(Location, out idRemapping));
        }