Identity.Info Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
deprecated
Returns general information previously specified for this identity. -or- Specifies a general information string for this identity.
[System.Obsolete("deprecated")]
public virtual string? Info { [Android.Runtime.Register("getInfo", "()Ljava/lang/String;", "GetGetInfoHandler")] get; [Android.Runtime.Register("setInfo", "(Ljava/lang/String;)V", "GetSetInfo_Ljava_lang_String_Handler")] set; }
[<System.Obsolete("deprecated")>]
[<get: Android.Runtime.Register("getInfo", "()Ljava/lang/String;", "GetGetInfoHandler")>]
[<set: Android.Runtime.Register("setInfo", "(Ljava/lang/String;)V", "GetSetInfo_Ljava_lang_String_Handler")>]
member this.Info : string with get, set
Property Value
general information about this identity.
- Attributes
Remarks
Property getter documentation:
Returns general information previously specified for this identity.
Java documentation for java.security.Identity.getInfo()
.
Property setter documentation:
Specifies a general information string for this identity.
First, if there is a security manager, its checkSecurityAccess
method is called with "setIdentityInfo"
as its argument to see if it's ok to specify the information string.
Java documentation for java.security.Identity.setInfo(java.lang.String)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.