SenseNet.Packaging.Internal.FileInstallStep.FileInstallStep C# (CSharp) Method

FileInstallStep() public method

public FileInstallStep ( IManifest manifest, CustomAttributeData rawData ) : System
manifest IManifest
rawData System.Reflection.CustomAttributeData
return System
		public FileInstallStep(IManifest manifest, CustomAttributeData rawData) : base(manifest, rawData)
		{
			//[assembly: InstallFile(RepositoryPath = "/Root/Test/asdf.css", ResourcePath = "/res.asdf.css")]
			var repositoryPath = GetParameterValue<string>("RepositoryPath");
			var contentName = ContentManager.Path.GetFileName(repositoryPath);
			var containerPath = ContentManager.Path.GetParentPath(repositoryPath);

			ContainerPath = containerPath;
			ContentName = contentName;
			RawAttachments = "Binary:" + ResourceName;
		}
		public FileInstallStep(IManifest manifest, string filePath, string repositoryContainerPath) : base(manifest, null)

Same methods

FileInstallStep::FileInstallStep ( IManifest manifest, string filePath, string repositoryContainerPath ) : System