SchemaZen.Library.Models.SqlAssembly.SqlAssembly C# (CSharp) Метод

SqlAssembly() публичный Метод

public SqlAssembly ( string permissionSet, string name ) : System.Collections.Generic
permissionSet string
name string
Результат System.Collections.Generic
		public SqlAssembly(string permissionSet, string name) {
			PermissionSet = permissionSet;
			Name = name;

            if (PermissionSet == "SAFE_ACCESS")
                PermissionSet = "SAFE";

            if (PermissionSet == "UNSAFE_ACCESS")
                PermissionSet = "UNSAFE";
        }