服务器上的全局自定义类

发布于 2024-12-24 20:17:54 字数 293 浏览 1 评论 0原文

我正在使用 C# ASP.Net 编写一个简单的聊天 Web 服务,这是我的新手。

服务器维护一个List,其中ConnectedUser对象是一个包含ID、用户名和等待消息列表的类。

我希望所有连接的客户端都能够访问服务器上的列表。

我尝试了应用程序状态,但我发现它不会保存自定义类,即使我让它可序列化。我尝试使用静态类来保存全局变量。两者都不会在服务调用之间保留更改。

我应该怎么做?谢谢。

I'm writing a simple chat web service with C# ASP.Net, which I am new to.

Server maintains a List<ConnectedUser>, where the ConnectedUser object is a class holding ID, username, and a list of waiting messages.

I want all connected clients to be able to access the list on the server.

I tried Application state, but I found it will not hold custom classes, even when I let it be serializable. I tried a static class holding the global variables. Neither persist changes between calls to the service.

How should I be doing this? Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

靑春怀旧 2024-12-31 20:17:54

为了在应用程序状态中存储自定义类,您不需要序列化/反序列化,并且通常可以访问它们。

以下是一些讨论此问题的线程:

For storing custom class in Application State you don't need to Serialize/Deserialize and normally they can be accessible.

Here is some threads talking about this:

烟柳画桥 2024-12-31 20:17:54

有几个选项(我们使用这两个选项):

1) 将可访问的值存储在在 global.asax 中或在第一个用户请求时初始化的静态类中。

2) 将值存储在 HttpRunTime.Cache 中,特别是需要定期刷新(可以在超时事件中刷新)。

A couple of options (we use both):

1) Store the values to be accessible in a static class that is initialized in global.asax or on the first user request.

2) Store the values in HttpRunTime.Cache, especially if it needs to be refreshed periodically (you can refresh in the timeout event).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文