Class PatientIdAnonymizer
Replaces patient identifier with specified name and id
Inheritance
System.Object
PatientIdAnonymizer
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:EvilDICOM.Anonymization.Anonymizers
Assembly:EvilDICOM.dll
Syntax
public class PatientIdAnonymizer : IAnonymizer
Constructors
View SourcePatientIdAnonymizer(String, String, String)
Declaration
public PatientIdAnonymizer(string firstName, string lastName, string id)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | firstName | |
| System.String | lastName | |
| System.String | id |
Properties
View SourceFirstName
The first name to make the new patient Id
Declaration
public string FirstName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Id
The new id for the anonymized file
Declaration
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
LastName
The last name to make the new patient Id
Declaration
public string LastName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Methods
View SourceAnonymize(DICOMObject)
Declaration
public void Anonymize(DICOMObject d)
Parameters
| Type | Name | Description |
|---|---|---|
| DICOMObject | d |