Exemplo n.º 1
0
        CreatePhysicalLogStreamEndWrapper(
            NativeCommon.IFabricAsyncOperationContext Context)
        {
            NativeLog.IKPhysicalLogStream result = null;

            this._NativeContainer.EndCreateLogStream(Context, out result);
            return(new PhysicalLogStream(result));
        }
Exemplo n.º 2
0
 PhysicalLogStream(NativeLog.IKPhysicalLogStream NativeStream)
 {
     this._NativeStream = NativeStream;
     if (this._NativeStream is NativeLog.IKPhysicalLogStream2)
     {
         this._NativeStream2 = this._NativeStream as NativeLog.IKPhysicalLogStream2;
     }
     else
     {
         this._NativeStream2 = null;
     }
 }