5.105 IsRevealFilteredAttribute

 procedure IsRevealFilteredAttribute(
     DRS_MSG_GETCHGREQ_V10 msgIn) : boolean

Informative summary of behavior: The IsRevealFilteredAttribute procedure returns true if the source DC is requesting attributes in the filtered set.

 filteredAttrSet: sequence of ATTRTYP
 i: int
  
 filteredAttrSet := GetFilteredAttributeSet()
  
 for i := 0 to msgIn.pPartialAttrSet.cAttrs - 1 
   if msgIn.pPartialAttrSet.rgPartialAttr[i]) in
         filteredAttrSet then
     return true;
   endif
 endfor
  
 for i := 0 to msgIn.pPartialAttrSetEx.cAttrs - 1 
   if msgIn.pPartialAttrSetEx.rgPartialAttr[i]) in 
         filteredAttrSet then
     return true;
   endif
 endfor   
  
 return false;