ServiceRecordCreatorCreateServiceRecord(ServiceRecord, Byte) Method
            Creates a Service Record byte array from the given 
            ServiceRecord object,
            into the specified byte array.
            
Namespace: InTheHand.Net.Bluetooth.SdpAssembly: InTheHand.Net.Bluetooth (in InTheHand.Net.Bluetooth.dll) Version: 4.0.32+5cdf1cfd21064ea31c5de33d160200ca1c4bc218
public int CreateServiceRecord(
	ServiceRecord record,
	byte[] buffer
)
Public Function CreateServiceRecord ( 
	record As ServiceRecord,
	buffer As Byte()
) As Integer
public:
int CreateServiceRecord(
	ServiceRecord^ record, 
	array<unsigned char>^ buffer
)
member CreateServiceRecord : 
        record : ServiceRecord * 
        buffer : byte[] -> int 
- record  ServiceRecord
 - An instance of ServiceRecord
            containing the record to be created.
            
 - buffer  Byte
 - An array of Byte for the record
            to be written to.
            
 
Int32The length of the record in the array of 
Byte.
            
 
            See the other overload CreateServiceRecord(ServiceRecord)