gpt4 book ai didi

xamarin - xamarin 表单中的 App.AppName

转载 作者:行者123 更新时间:2023-12-04 16:51:33 25 4
gpt4 key购买 nike

我使用 4.0.4.4 XF 创建了一个新的 XF 项目。我在哪里找不到 App.AppName。我正在尝试按照教程
https://developer.xamarin.com/guides/xamarin-forms/web-services/authentication/oauth/在文档中肯定会引用它。

如果我在 PCL/App.cs 中使用 AppName 创建一个公共(public)属性,它似乎可以正常工作。这是正确的方法吗?

教程中的用法
下面的代码示例展示了如何在 iOS 平台上安全地保存 Account 对象:

AccountStore.Create ().Save (e.Account, App.AppName);

以下代码示例展示了如何在 Android 平台上安全地保存 Account 对象:
AccountStore.Create (Context).Save (e.Account, App.AppName);

最佳答案

这些示例中的“App”是 Application 的子类。 :

public class App : Application

因此,无论您如何命名您的解决方案/项目,您创建的它将是 Application 的名称子类:
public class YourAppNameHere : Application

然后 AppName他们所指的是在该类中定义的类级变量:
public static string AppName { get { return "TodoListApp"; } }

查看示例源@ https://github.com/xamarin/xamarin-forms-samples/blob/master/WebServices/TodoAWSAuth/TodoAWS/TodoAWS-SimpleDB.cs

关于xamarin - xamarin 表单中的 App.AppName,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37600431/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com