Subtext.Scripting.SqlScriptRunner.UnpackEmbeddedScript C# (CSharp) Method

UnpackEmbeddedScript() static private method

static private UnpackEmbeddedScript ( Assembly assembly, Type scopingType, string scriptName ) : Stream
assembly System.Reflection.Assembly
scopingType System.Type
scriptName string
return Stream
        static Stream UnpackEmbeddedScript(Assembly assembly, Type scopingType, string scriptName)
        {
            return assembly.GetManifestResourceStream(scopingType, scriptName);
        }

Same methods

SqlScriptRunner::UnpackEmbeddedScript ( Assembly assembly, string fullScriptName ) : Stream
SqlScriptRunner::UnpackEmbeddedScript ( Type scopingType, string scriptName ) : Stream