单项选择题
为应用程序开发人员上班 Certkiller。.com,Certkiller.com 使用 Visual Studio.NET 2005 作为其应用程序开发平台。
您使用名为 Certkiller 的 Windwos XP 专业版客户端计算机-WS536 为您的开发计算机。 您正在开发。NET Framework 2.0 应用程序上 Certkiller-WS536。你写的名为 TestScrapData 的类。
您需要配置 TestScrapData 类并限制其访问只来自特定的 Web 站点,www 的代码。Certkiller.com 和它的子域。
Web 站点,将所需使用 HTTP 和 HTTPS FTP 协议的访问。
您需要另外配置 TestScrapData 类的代码访问权限。
你应该做什么?()
A.在该方案中,应使用SiteIdentityPermission类。
B.在该方案中,应使用PublisherIdentityPermission类。
C.在该方案中,应使用ZoneIdentityPermission类。
D.在该方案中,应使用UrlIdentityPermission类。
相关考题
-
单项选择题
您创建了一个存储居住在不同区域的客户的信息的应用程序。您是发展中国家的内部工具,用于此应用程序。您需要收集区域信息您的客户在加拿大。您正在为您这个应用程序开发内部的公用程序。您需要收集的客户信息是加拿大国家的客户。用哪段代码可以实现?()
A.A
B.B
C.C
D.D -
单项选择题
You are testing a component that serializes the Meeting class instances so that they can be saved to the file system. The Meeting class has the following definition: The component contains a procedure with the following code segment. Meeting myMeeting = new Meeting("Goals"); myMeeting.roomNumber=1100; string[] attendees = new string[2]{"John", "Mary"}; myMeeting.invitees = attendees; XmlSerializer xs = new XmlSerializer(typeof(Meeting)); StreamWriter writer = new StreamWriter(@"C:\Meeting.xml"); xs.Serialize(writer, myMeeting); writer.Close(); You need to identify the XML block that is written to the C:\Meeting.xml file as a result of running this procedure.Which XML block represents the content that will be written to the C:\Meeting.xml file?()
A.A
B.B
C.C
D.D -
单项选择题
为应用程序开发人员上班 Certkiller.com,Certkiller.com 使用 Visual Studio.NET 2005 作为其应用程序开发平台。 您使用名为 Certkiller 的 Windwos XP 专业版客户端计算机-WS554 为您的开发计算机。 您正在开发.NET Framework 2.0 应用程序上 Certkiller-WS536。应用程序将用于通过 internet 发送的数据。 您必须确保发送的数据不被修改,或篡改在传输过程中,数据传输的保密性不重要。 你最近决定通过使用一个密钥来实现数据的哈希值和传输数据的哈希值。 数据的接收方应该能够检测是否数据或哈希值已修改虽然接收器有权访问该密钥用于计算哈希值。 此外,您必须确保 160 位密钥序列应该是可以接受的。 你应该做什么?()
A.要编码的数据在传输之前应使用DESCryptoServiceProvider类
B.要编码的数据在传输之前应使用HMACMD5类
C.要编码的数据在传输之前应使用MACTripleDES类
D.要编码的数据在传输之前应使用HMACSHA1类
