SignatureFromFile Property

Type

System.String

 

Access

Get only

 

Description

The SignatureFromFile property returns the signature stored in the base data source file. The base data source is written out with a calculated signature value based on the current contents at the time it is saved. If the file is edited prior to being loaded, the signature calculated from the (edited) contents of the file will not match the value returned by this method, which is the signature saved in the file.

 

Example

[VB]

Private Sub GeoCalcNET_DataSourceComponent_SignatureFromFile(ByVal data As GeoCalcNET.DataSourceComponent)

Dim BaseSig As String = data.SignatureFromFile

End Sub

[C#]

private void GeoCalcNET_DataSourceComponent_SignatureFromFile(GeoCalcNET.DataSourceComponent data)

{

String BaseSig = data.SignatureFromFile;

}