不允许来自静态类型的数据

发布于 2024-10-13 01:44:06 字数 212 浏览 2 评论 0原文

我正在 .net 中创建一个 API,它将使用 xml 数据与其客户端进行通信。 客户端软件可以是任何语言php、asp.net等。 开发此类 API 的最佳方法是什么, 我试图使用 .net webservices',但 [webmethods] 不允许非静态数据, 在我的 API 中,有很多东西只能处理非静态数据。 你能建议解决这个问题吗? 有什么方法可以在不使用 .net 网络服务的情况下开发它吗?

i m making an API in .net , that will communicate with its client with xml data.
client software can be in any language php,asp.net etc.
what is the best way to develop such API,
i was trying to use the .net webservices', but [webmethods] does not allow non static data,
and in my API there are lots of things that will work only with the non static data.
can you please suggest any solution to this problem, ?
any way to develpop it without using .net webservies?

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

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

发布评论

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

评论(1

姜生凉生 2024-10-20 01:44:06

根据评论,您实际上的意思是“不允许静态类”。所以...不要使用 SE 静态类。我建议将这些静态属性移至默认实例中:

class Foo {
    private static readonly Foo @default =
        new Foo();
    public static Foo Default { get { return @default; } }
    public int A { get; set; }
    public string B { get; set; }

}

并将 Foo.Default 对象的属性视为现有的静态属性。

请注意,对于 XmlSerializer,您需要一个公共构造函数,因此我没有将其称为单例,因为严格来说它不会。

Based on the comments, you actually mean "does not allow static classes". So... Don't SE static class. I would suggest moving those static properties into a default instance:

class Foo {
    private static readonly Foo @default =
        new Foo();
    public static Foo Default { get { return @default; } }
    public int A { get; set; }
    public string B { get; set; }

}

And treat the Foo.Default object's properties like the existing static ones.

Note that with XmlSerializer you need a public ctor, hence I haven't called this a singleton, as strictly speaking it won't be.

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