BimlGen.MainWindow.GetBiml C# (CSharp) Méthode

GetBiml() private méthode

private GetBiml ( BimlRequest request ) : void
request BimlRequest
Résultat void
        private void GetBiml( BimlRequest request)
        {
            var biml = BimlGenerator.GetBiml( request );
            if( !string.IsNullOrEmpty( biml ) )
            {
                var now = DateTime.Now;
                var timestamp = "" + now.Hour + now.Minute + now.Second;
                File.WriteAllText( string.Format( "{0}\\{1}{2}.biml", request.OutputFolder, request.DatabaseName, timestamp ), biml );
            }
        }