CSJ2K.Util.StoreMsgLogger.GetLogFile C# (CSharp) 메소드

GetLogFile() 개인적인 정적인 메소드

private static GetLogFile ( string fileName ) : Stream
fileName string
리턴 Stream
        private static Stream GetLogFile(string fileName)
        {
            var file =
                ApplicationData.Current.LocalFolder.CreateFileAsync(fileName, CreationCollisionOption.ReplaceExisting)
                    .AsTask()
                    .Result;
            return file.OpenStreamForWriteAsync().Result;
        }