Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SocketRule connection should be tested on construction, not on first call #590

Open
rkm opened this issue Nov 18, 2024 · 0 comments
Open
Labels
enhancement New feature or request

Comments

@rkm
Copy link
Member

rkm commented Nov 18, 2024

public RuleAction Apply(string fieldName, string fieldValue, out List<FailurePart> badParts)
{
if (_stream == null)
{
_tcp = new TcpClient(Host, Port);
_stream = _tcp.GetStream();
_write = new System.IO.StreamWriter(_stream);
_read = new System.IO.StreamReader(_stream);
}

@rkm rkm added the enhancement New feature or request label Nov 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant