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)
Property IsReadProtected As Nullable(Of Boolean)
C#
Nullable<bool> IsReadProtected { get; set; }
Visual C++
property Nullable<bool> IsReadProtected {
	Nullable<bool> get ();
	void set (Nullable<bool> value);
}
JavaScript
function get_isReadProtected();
function set_isReadProtected(value);

ToggleRemarks

Metadata

AllowsDefaultChange: false
Cardinality: SINGLE
CopyToReservation: false
DataType: BOOLEAN
IsHidden: false
IsOrderable: true
IsSearchable: true
IsValueRequired: false
ModificationAccessRequired: WRITE
PersistenceType: OWN_COLUMN
PropertyDefaultBoolean: false
RequiresUniqueElements: false
Settability: SETTABLE_ONLY_ON_CREATE
TargetAccessRequired: READ

ToggleSee Also