Bridge.React.Analyser.ITypeSymbolExtensions.IsPartOfBridgeReact C# (CSharp) Метод

IsPartOfBridgeReact() публичный статический Метод

public static IsPartOfBridgeReact ( this type ) : bool
type this
Результат bool
		public static bool IsPartOfBridgeReact(this ITypeSymbol type)
		{
			if (type == null)
				throw new ArgumentNullException(nameof(type));

			return type.ContainingAssembly.Identity.Name == "Bridge.React";
		}
	}
ITypeSymbolExtensions