¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io

Re: Signal Change Events on the 4-Series


 

¿ªÔÆÌåÓý

Check the references in the project, even t okay though you have the "using" if it's not present in of the references Visual Studio will have no idea what to do with it.

"do you know Bob?"
"Uhh, which Bob?"

Get


From: [email protected] <[email protected]> on behalf of jbasen via groups.io <jay.m.basen@...>
Sent: Friday, May 16, 2025 3:41:46 AM
To: [email protected] <[email protected]>
Subject: [crestron] Signal Change Events on the 4-Series
?
I'm going through the learning cliff of programming for a 4-series
processor with VS2019.? I always try to program my drivers using VS2008
so the code can be run on a 3-Series processor or a 4-Series processor.?
In this case I need VS2019's support for WebSockets.

To pass data back to a group of Simpl+ modules I would do the following
with VS2008:

???? public class SerialChangeEventArgs : EventArgs
???? {
???????? public string entity_id { get; set; }

???????? public SerialChangeEventArgs()
???????? {
???????? }

???????? public SerialChangeEventArgs(string entity_id)
???????? {
???????????? this.entity_id = entity_id;
???????? }
???? }

???? public static class SignalChangeEvents
???? {
???????? public static event SerialChangedEventHandler onSerialValueChange;

???????? public static void SerialValueChange(string entity_id)
???????? {
???????????? SignalChangeEvents.onSerialValueChange(new
SerialChangeEventArgs(entity_id));
???????? }
???? }

However, under VS2019 I get the following error:

Error??? CS0246??? The type or namespace name
'SerialChangedEventHandler' could not be found (are you missing a using
directive or an assembly reference?)

I have the same "using" directives that I have used with VS2008.

Any assistance would be greatly appreciated.

Thanks

Jay






Join [email protected] to automatically receive all group messages.