CalculatedSignature Property

Type

System.String

 

Access

Get only

 

Description

The CalculatedSignature Property returns the signature calculated from the current contents of 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 saved in the file will not match the value returned by this method, which is the signature calculated from the (edited) contents of the file. Note: this method may take several seconds to complete.

 

Example

[VB]

Private Sub GeoCalcNET_DataSourceComponent_CalculatedSignature(ByVal data As GeoCalcNET.DataSourceComponent)

Dim CalcSig As String = data.CalculatedSignature

End Sub

 

[C#]

private void GeoCalcNET_DataSourceComponent_CalculatedSignature(GeoCalcNET.DataSourceComponent data)

{

String CalcSig = data.CalculatedSignature;

}