Optional attribute publicKeyFile.

The name of a file containing public key information to be used if asymetric encryption is selected in the Encryption attribute.

If a value is not provided PublicKey.xml will be created automatically in the App_Data folder of the application. Random information will be used to create the keys.

Namespace: FiftyOne.Framework.Mobile.Configuration
Assembly: FiftyOne.Framework (in FiftyOne.Framework.dll) Version: 2.0.2.1 (2.0.2.1)

Syntax

C#
[ConfigurationPropertyAttribute("publicKeyFile", IsRequired = false, DefaultValue = "~/App_Data/PublicKey.xml")]
[StringValidatorAttribute(InvalidCharacters = "!@#$%^&*()[]{};'"|", MaxLength = )]
public string PublicKeyFile { get; }
Visual Basic
<ConfigurationPropertyAttribute("publicKeyFile", IsRequired := False, DefaultValue := "~/App_Data/PublicKey.xml")> _
<StringValidatorAttribute(InvalidCharacters := "!@#$%^&*()[]{};'"|", MaxLength := )> _
Public ReadOnly Property PublicKeyFile As String
	Get
Visual C++
[ConfigurationPropertyAttribute(L"publicKeyFile", IsRequired = false, DefaultValue = L"~/App_Data/PublicKey.xml")]
[StringValidatorAttribute(InvalidCharacters = L"!@#$%^&*()[]{};'"|", MaxLength = )]
public:
property String^ PublicKeyFile {
	String^ get ();
}

See Also