Microsoft.Azure.Commands.RecoveryServices.GetAzureSiteRecoveryProtectionEntity.WriteProtectionEntities C# (CSharp) Method

WriteProtectionEntities() private method

Writes Protection Entities.
private WriteProtectionEntities ( IList protectionEntities ) : void
protectionEntities IList Protection Entities
return void
        private void WriteProtectionEntities(IList<ProtectionEntity> protectionEntities)
        {
            this.WriteObject(protectionEntities.Select(pe => new ASRProtectionEntity(pe)), true);
        }