当前位置: 首页>>代码示例>>C#>>正文


C# IsolatedStorageFilePermission.FromXml方法代码示例

本文整理汇总了C#中System.Security.Permissions.IsolatedStorageFilePermission.FromXml方法的典型用法代码示例。如果您正苦于以下问题:C# IsolatedStorageFilePermission.FromXml方法的具体用法?C# IsolatedStorageFilePermission.FromXml怎么用?C# IsolatedStorageFilePermission.FromXml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Security.Permissions.IsolatedStorageFilePermission的用法示例。


在下文中一共展示了IsolatedStorageFilePermission.FromXml方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: FromXml_WrongVersion

		public void FromXml_WrongVersion ()
		{
			IsolatedStorageFilePermission isfp = new IsolatedStorageFilePermission (PermissionState.None);
			SecurityElement se = isfp.ToXml ();
			se.Attributes.Remove ("version");
			se.Attributes.Add ("version", "2");
			isfp.FromXml (se);
		}
开发者ID:Profit0004,项目名称:mono,代码行数:8,代码来源:IsolatedStorageFilePermissionTest.cs

示例2: FromXml_NoVersion

		public void FromXml_NoVersion ()
		{
			IsolatedStorageFilePermission isfp = new IsolatedStorageFilePermission (PermissionState.None);
			SecurityElement se = isfp.ToXml ();

			SecurityElement w = new SecurityElement (se.Tag);
			w.AddAttribute ("class", se.Attribute ("class"));
			isfp.FromXml (w);
		}
开发者ID:Profit0004,项目名称:mono,代码行数:9,代码来源:IsolatedStorageFilePermissionTest.cs

示例3: FromXml_NoClass

		public void FromXml_NoClass ()
		{
			IsolatedStorageFilePermission isfp = new IsolatedStorageFilePermission (PermissionState.None);
			SecurityElement se = isfp.ToXml ();

			SecurityElement w = new SecurityElement (se.Tag);
			w.AddAttribute ("version", se.Attribute ("version"));
			isfp.FromXml (w);
			// doesn't even care of the class attribute presence
		}
开发者ID:Profit0004,项目名称:mono,代码行数:10,代码来源:IsolatedStorageFilePermissionTest.cs

示例4: FromXml_WrongClass

		public void FromXml_WrongClass ()
		{
			IsolatedStorageFilePermission isfp = new IsolatedStorageFilePermission (PermissionState.None);
			SecurityElement se = isfp.ToXml ();

			SecurityElement w = new SecurityElement (se.Tag);
			w.AddAttribute ("class", "Wrong" + se.Attribute ("class"));
			w.AddAttribute ("version", se.Attribute ("version"));
			isfp.FromXml (w);
			// doesn't care of the class name at that stage
			// anyway the class has already be created so...
		}
开发者ID:Profit0004,项目名称:mono,代码行数:12,代码来源:IsolatedStorageFilePermissionTest.cs

示例5: FromXml_WrongTagCase

		public void FromXml_WrongTagCase ()
		{
			IsolatedStorageFilePermission isfp = new IsolatedStorageFilePermission (PermissionState.None);
			SecurityElement se = isfp.ToXml ();
			se.Tag = "IPERMISSION"; // instead of IPermission
			isfp.FromXml (se);
		}
开发者ID:Profit0004,项目名称:mono,代码行数:7,代码来源:IsolatedStorageFilePermissionTest.cs

示例6: FromXml_WrongTag

		public void FromXml_WrongTag ()
		{
			IsolatedStorageFilePermission isfp = new IsolatedStorageFilePermission (PermissionState.None);
			SecurityElement se = isfp.ToXml ();
			se.Tag = "IMono";
			isfp.FromXml (se);
		}
开发者ID:Profit0004,项目名称:mono,代码行数:7,代码来源:IsolatedStorageFilePermissionTest.cs

示例7: FromXml_Null

		public void FromXml_Null ()
		{
			IsolatedStorageFilePermission isfp = new IsolatedStorageFilePermission (PermissionState.None);
			isfp.FromXml (null);
		}
开发者ID:Profit0004,项目名称:mono,代码行数:5,代码来源:IsolatedStorageFilePermissionTest.cs


注:本文中的System.Security.Permissions.IsolatedStorageFilePermission.FromXml方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。