예제 #1
0
 public int Next(out IVsTextStreamMarker ppRetval) {
     ppRetval = null;
     if (_index >= 0 && _index < _markers.Length) {
         ppRetval = _markers[_index];
         _index++;
         return VSConstants.S_OK;
     }
     return VSConstants.S_FALSE;
 }
예제 #2
0
 public int Next(out IVsTextStreamMarker ppRetval)
 {
     ppRetval = null;
     if (_index >= 0 && _index < _markers.Length)
     {
         ppRetval = _markers[_index];
         _index++;
         return(VSConstants.S_OK);
     }
     return(VSConstants.S_FALSE);
 }
예제 #3
0
 public Marker(IVsTextStreamMarker m, int start, int length) :
     base(start, length)
 {
     StreamMarker = m;
 }
예제 #4
0
 public int FindMarkerByPosition(int iMarkerType, int iStartingPos, uint dwFlags, out IVsTextStreamMarker ppMarker) {
     throw new NotImplementedException();
 }
예제 #5
0
 public int CreateStreamMarker(int iMarkerType, int iPos, int iLength, IVsTextMarkerClient pClient, IVsTextStreamMarker[] ppMarker) {
     throw new NotImplementedException();
 }
예제 #6
0
 public VsEnumStreamMarkersMock(IVsTextStreamMarker[] markers) {
     _markers = markers;
 }
예제 #7
0
 public Marker(IVsTextStreamMarker m, int start, int length) :
     base(start, length) {
     StreamMarker = m;
 }
예제 #8
0
 public int FindMarkerByPosition(int iMarkerType, int iStartingPos, uint dwFlags, out IVsTextStreamMarker ppMarker)
 {
     throw new NotImplementedException();
 }
예제 #9
0
		public int FindMarkerByPosition(int iMarkerType, int iStartingPos, uint dwFlags, out IVsTextStreamMarker ppMarker)
		{
			throw new Exception("The method or operation is not implemented.");
		}
예제 #10
0
		public int CreateStreamMarker(int iMarkerType, int iPos, int iLength, IVsTextMarkerClient pClient, IVsTextStreamMarker[] ppMarker)
		{
			throw new Exception("The method or operation is not implemented.");
		}
예제 #11
0
 public int FindMarkerByPosition(int iMarkerType, int iStartingPos, uint dwFlags, out IVsTextStreamMarker ppMarker)
 {
     throw new Exception("The method or operation is not implemented.");
 }