1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary
- {
-
-
-
- public class ResponseGetDfsReferral
- {
- public ushort PathConsumed;
- public ushort NumberOfReferrals;
- public uint ReferralHeaderFlags;
- public List<DfsReferralEntry> ReferralEntries;
- public List<string> StringBuffer;
-
- public ResponseGetDfsReferral()
- {
- throw new NotImplementedException();
- }
- public ResponseGetDfsReferral(byte[] buffer)
- {
- throw new NotImplementedException();
- }
- public byte[] GetBytes()
- {
- throw new NotImplementedException();
- }
- }
- }
|