Uiinfrastructure API Docs  
 

HTMLElement.WriteNugget Method (Byte[], XPStringBuilder, IXPResponse)

This protected method is used by this class an all subclasses to write the smallest divisible units of HTML. These nuggets of HTML are either appended to an XPStringBuilder, written to the IXPResponse, both, or neither.

This method is similar to the WriteNugget method with the String argument, but different in that it does not require the response to convert the String argument to a byte array.

protected virtual void WriteNugget(
   byte[] b,
   XPStringBuilder sbLocal,
   IXPResponse response
);

Parameters

b
sbLocal
Pass an XPStringBuilder to which you wish the String appended. Pass null if you do not wish the string appended to an XPStringBuilder.
response
Pass an IXPResponse to which you wish the String written. Pass null if you do not wish the string written to an IXPResponse.

See Also

HTMLElement Class | com.plumtree.xpshared.htmlelements Namespace | HTMLElement.WriteNugget Overload List