|   | DataSubscriberAuthenticate Method | 
        
        
            Authenticates subscriber to a data publisher.
            
        
        Namespace: GSF.TimeSeries.TransportAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic virtual bool Authenticate(
	string sharedSecret,
	string authenticationID
)
Public Overridable Function Authenticate ( 
	sharedSecret As String,
	authenticationID As String
) As Boolean
public:
virtual bool Authenticate(
	String^ sharedSecret, 
	String^ authenticationID
)
abstract Authenticate : 
        sharedSecret : string * 
        authenticationID : string -> bool 
override Authenticate : 
        sharedSecret : string * 
        authenticationID : string -> bool function Authenticate(sharedSecret, authenticationID);
Parameters
- sharedSecret  String
- Shared secret used to look up private crypto key and initialization vector.
- authenticationID  String
- Authentication ID that publisher will use to validate subscriber identity.
Return Value
Booleantrue if authentication transmission was successful; otherwise 
false.
 See Also
See Also