Show / Hide Table of Contents

Class FixedStringFormatEntry

The Fixed String masking format uses a constant string for masking. To learn more, check Fixed String in the Data Safe documentation.

Inheritance
object
FormatEntry
FixedStringFormatEntry
Inherited Members
FormatEntry.Description
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class FixedStringFormatEntry : FormatEntry

Properties

FixedString

Declaration
[Required(ErrorMessage = "FixedString is required.")]
[JsonProperty(PropertyName = "fixedString")]
public string FixedString { get; set; }
Property Value
Type Description
string

The constant string to be used for masking.

Remarks

Required

In this article
Back to top