DataFormWebPart.FetchCustomizedXsl method

Fetches the customized XSL and related files information for the DataFormWebPart.

Namespace:  Microsoft.SharePoint.WebPartPages
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Overridable Sub FetchCustomizedXsl ( _
    <OutAttribute> ByRef customizedXsl As Byte(), _
    <OutAttribute> ByRef hashKey As String _
)
'Usage
Dim instance As DataFormWebPart
Dim customizedXsl As Byte()
Dim hashKey As String

instance.FetchCustomizedXsl(customizedXsl, _
    hashKey)
public virtual void FetchCustomizedXsl(
    out byte[] customizedXsl,
    out string hashKey
)

Parameters

  • customizedXsl
    Type: []

    When this method returns, contains an array of bytes that represent the customized XSL information. This parameter is passed uninitialized.

  • hashKey
    Type: System.String

    When this method returns, contains a string that represents the files information that is related to the customizedXsl. This parameter is passed uninitialized.

Remarks

This virtual method always sets customizedXsl to null and hashKey to an empty string.

This virtual method can be implemented in a subclass to get the customized XSL information.

See also

Reference

DataFormWebPart class

DataFormWebPart members

Microsoft.SharePoint.WebPartPages namespace