Specifies that the property value should be unavailable to be read by applications executing outside the server. Properties of this type can be used to store passwords or other sensitive information that is only available to trusted handler code executing inside the server. Use the getReadProtectedProperty method on the HandlerCallContext class to return the Property object representing the value of the binary-valued, read-protected property.

Namespace:  FileNet.Api.Admin
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
ReadOnly Property IsReadProtected As Nullable(Of Boolean)
C#
Nullable<bool> IsReadProtected { get; }
Visual C++
property Nullable<bool> IsReadProtected {
	Nullable<bool> get ();
}
JavaScript
function get_isReadProtected();

ToggleRemarks

ToggleSee Also