Interface IMatchesSessionPropertyValidation

Defines regular expression based validation for a trusted client proposed session property.

Namespace: PushTechnology.ClientInterface.Client.Features.Control.Clients
Assembly: Diffusion.Client.dll
Syntax
public interface IMatchesSessionPropertyValidation : ISessionPropertyValidation
Remarks

Such validation defines a regular expression, which the supplied session property value must belong.

Since 6.5

Properties

Regex

Returns the regular expression.

Declaration
string Regex { get; }
Property Value
Type Description
System.String

The regular expression.

Back to top