You’re viewing documentation for an outdated product. The Graphics Mill Web Controls library has been removed from Graphics Mill and is now part of the Customers Canvas product line, where it is available as a set of APIs for Design Atoms and as Design Editor.

FileCache.GetPublicTempFileName Method (String)

Generates an unique temporary file name for the public cache.

Namespace: Aurigma.GraphicsMill.AjaxControls
Assembly: Aurigma.GraphicsMill.AjaxControls (in Aurigma.GraphicsMill.AjaxControls.dll)

Syntax

C#
public string GetPublicTempFileName(
	string extension
)

Parameters

extension

Type: System..String

An extension to append to the generated file name.

Return Value

An unique name of the temporary file in the public cache (without full path).

Remarks

Note, this method does not create a file with generated name. It just returns a name of the file which is guarantied unique in the public cache folder. You should create this file manually.

To get a full physical path to the public cache, use the GetAbsolutePublicCachePath(String) method. If you need to get an URL to this file (so that this file could be loaded into the browser), use the GetRelativePublicCachePath(String) method.

See Also

Reference