Language
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Copies the private data associated with a resource to a buffer.
Definition
Visual Basic Public Function GetPrivateData( _
ByVal guidData As Guid_
) As Byte()C# public byte[] GetPrivateData(
GuidguidData
);C++ public:
array<unsigned char>^ GetPrivateData(
GuidguidData
);JScript public function GetPrivateData(
guidData : Guid
) : byte[];
Parameters
guidData System.Guid
Represents a globally unique identifier (GUID) that identifies the private data to retrieve.
Return Value
System.Byte[]
Returns an array of bytesthat contains the requested private data.
Remarks
Exceptions
The method call is invalid. For example, a method's parameter might contain an invalid value.
The requested Guid
was not found.
Applies To